diff options
| -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"; }; |