diff options
| author | Jeshua Lin <jeslinmx@users.noreply.github.com> | 2025-08-22 09:48:26 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-22 11:48:26 +1000 |
| commit | f2a85494f2a2207589c87ba26c1923e76017e1c2 (patch) | |
| tree | e22edeb792848bfbd8a4e22759080f598320f99c /nix/hm-module.nix | |
| parent | bar: add kblayout popout (diff) | |
| download | caelestia-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 'nix/hm-module.nix')
| -rw-r--r-- | nix/hm-module.nix | 4 |
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"; }; |