nix/hm: fix type of settings and cli.settings (#456)
This commit is contained in:
parent
660f09959d
commit
f2a85494f2
1 changed files with 2 additions and 2 deletions
|
|
@ -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";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue