aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/services/polybar.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/services/polybar.nix b/modules/services/polybar.nix
index e94f7f22097..82ae27b1661 100644
--- a/modules/services/polybar.nix
+++ b/modules/services/polybar.nix
@@ -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.