dunst: switch from attrs to attrsOf
This commit is contained in:
parent
c108eaba42
commit
b085344b91
|
@ -5,6 +5,9 @@ with lib;
|
||||||
let
|
let
|
||||||
|
|
||||||
cfg = config.services.dunst;
|
cfg = config.services.dunst;
|
||||||
|
|
||||||
|
eitherStrBoolIntList = with types; either str (either bool (either int (listOf str)));
|
||||||
|
|
||||||
toDunstIni = generators.toINI {
|
toDunstIni = generators.toINI {
|
||||||
mkKeyValue = key: value:
|
mkKeyValue = key: value:
|
||||||
let
|
let
|
||||||
|
@ -61,7 +64,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
settings = mkOption {
|
settings = mkOption {
|
||||||
type = types.attrsOf types.attrs;
|
type = with types; attrsOf (attrsOf eitherStrBoolIntList);
|
||||||
default = {};
|
default = {};
|
||||||
description = "Configuration written to ~/.config/dunstrc";
|
description = "Configuration written to ~/.config/dunstrc";
|
||||||
example = literalExample ''
|
example = literalExample ''
|
||||||
|
|
Loading…
Reference in a new issue