fix(netconf): type any doesn't exist
This commit is contained in:
parent
bbdae45f4f
commit
fd1bdd3296
1 changed files with 2 additions and 2 deletions
|
@ -14,10 +14,10 @@ let
|
||||||
inherit (lib) mapAttrs mkOption;
|
inherit (lib) mapAttrs mkOption;
|
||||||
|
|
||||||
inherit (lib.types)
|
inherit (lib.types)
|
||||||
|
attrs
|
||||||
attrsOf
|
attrsOf
|
||||||
bool
|
bool
|
||||||
str
|
str
|
||||||
any
|
|
||||||
submodule
|
submodule
|
||||||
package
|
package
|
||||||
;
|
;
|
||||||
|
@ -44,7 +44,7 @@ in
|
||||||
options = {
|
options = {
|
||||||
# Hack because of this https://git.dgnum.eu/DGNum/colmena/src/commit/71b1b660f2cda2e34e134d0028cafbd56bb22008/src/nix/hive/eval.nix#L166 which defines nixpkgs option but we don't have it here. What about liminix ?
|
# Hack because of this https://git.dgnum.eu/DGNum/colmena/src/commit/71b1b660f2cda2e34e134d0028cafbd56bb22008/src/nix/hive/eval.nix#L166 which defines nixpkgs option but we don't have it here. What about liminix ?
|
||||||
nixpkgs = mkOption {
|
nixpkgs = mkOption {
|
||||||
type = attrsOf any;
|
type = attrs;
|
||||||
default = { };
|
default = { };
|
||||||
};
|
};
|
||||||
netconf = {
|
netconf = {
|
||||||
|
|
Loading…
Reference in a new issue