summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeshua Lin <jeslinmx@users.noreply.github.com>2025-08-22 09:48:26 +0800
committerGitHub <noreply@github.com>2025-08-22 11:48:26 +1000
commitf2a85494f2a2207589c87ba26c1923e76017e1c2 (patch)
treee22edeb792848bfbd8a4e22759080f598320f99c
parentbar: add kblayout popout (diff)
downloadcaelestia-shell-f2a85494f2a2207589c87ba26c1923e76017e1c2.tar.gz
caelestia-shell-f2a85494f2a2207589c87ba26c1923e76017e1c2.tar.bz2
caelestia-shell-f2a85494f2a2207589c87ba26c1923e76017e1c2.zip
nix/hm: fix type of settings and cli.settings (#456)
Diffstat (limited to '')
-rw-r--r--nix/hm-module.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/hm-module.nix b/nix/hm-module.nix
index 9876826..c510bfd 100644
--- a/nix/hm-module.nix
+++ b/nix/hm-module.nix
@@ -18,7 +18,7 @@ in {
description = "The package of Caelestia shell";
};
settings = mkOption {
- type = types.attrs;
+ type = types.attrsOf types.anything;
default = {};
description = "Caelestia shell settings";
};
@@ -35,7 +35,7 @@ in {
description = "The package of Caelestia CLI"; # Doesn't override the shell's CLI, only change from home.packages
};
settings = mkOption {
- type = types.attrs;
+ type = types.attrsOf types.anything;
default = {};
description = "Caelestia CLI settings";
};