From f2a85494f2a2207589c87ba26c1923e76017e1c2 Mon Sep 17 00:00:00 2001 From: Jeshua Lin Date: Fri, 22 Aug 2025 09:48:26 +0800 Subject: nix/hm: fix type of settings and cli.settings (#456) --- nix/hm-module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nix') 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"; }; -- cgit v1.2.3-freya