mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
dunst: switch from attrs to attrsOf
This commit is contained in:
parent
c108eaba42
commit
b085344b91
1 changed files with 4 additions and 1 deletions
|
@ -5,6 +5,9 @@ with lib;
|
|||
let
|
||||
|
||||
cfg = config.services.dunst;
|
||||
|
||||
eitherStrBoolIntList = with types; either str (either bool (either int (listOf str)));
|
||||
|
||||
toDunstIni = generators.toINI {
|
||||
mkKeyValue = key: value:
|
||||
let
|
||||
|
@ -61,7 +64,7 @@ in
|
|||
};
|
||||
|
||||
settings = mkOption {
|
||||
type = types.attrsOf types.attrs;
|
||||
type = with types; attrsOf (attrsOf eitherStrBoolIntList);
|
||||
default = {};
|
||||
description = "Configuration written to ~/.config/dunstrc";
|
||||
example = literalExample ''
|
||||
|
|
Loading…
Reference in a new issue