1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-22 22:48:31 +02:00

aerc: cleanup unused bindings

This commit is contained in:
Damien Cassou 2023-08-27 19:09:23 +02:00 committed by Robert Helgesson
parent 90e62f96c7
commit 35cbed7ac7
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, confSections, confSection, ... }:
{ config, lib, confSections, confSection, ... }:
with lib;

View File

@ -104,7 +104,6 @@ in {
let
global = conf.global or { };
local = removeAttrs conf [ "global" ];
optNewLine = if global != { } && local != { } then "\n" else "";
mkValueString = v:
if isList v then # join with comma
concatStringsSep "," (map (generators.mkValueStringDefault { }) v)