polybar: switch from attrs to attrsOf

(cherry picked from commit d67835260d)
This commit is contained in:
Nikita Uvarov 2018-12-05 11:54:52 +01:00 committed by Robert Helgesson
parent 48ba1010ab
commit c2646f9f2b
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

View file

@ -6,6 +6,8 @@ let
cfg = config.services.polybar;
eitherStrBoolIntList = with types; either str (either bool (either int (listOf str)));
toPolybarIni = generators.toINI {
mkKeyValue = key: value:
let
@ -57,7 +59,7 @@ in
type = types.coercedTo
types.path
(p: { "section/base" = { include-file = "${p}"; }; })
(types.attrsOf types.attrs);
(types.attrsOf (types.attrsOf eitherStrBoolIntList));
description = ''
Polybar configuration. Can be either path to a file, or set of attributes
that will be used to create the final configuration.