Fix types
This commit is contained in:
@@ -103,28 +103,28 @@ let
|
|||||||
default = "/media/data";
|
default = "/media/data";
|
||||||
};
|
};
|
||||||
arion = mkOption {
|
arion = mkOption {
|
||||||
type = type.bool;
|
type = types.bool;
|
||||||
default = false;
|
default = false;
|
||||||
};
|
};
|
||||||
sops = mkOption {
|
sops = mkOption {
|
||||||
type = type.bool;
|
type = types.bool;
|
||||||
default = false;
|
default = false;
|
||||||
};
|
};
|
||||||
openssh = mkOption {
|
openssh = mkOption {
|
||||||
type = type.bool;
|
type = types.bool;
|
||||||
default = false;
|
default = false;
|
||||||
};
|
};
|
||||||
wireguard = mkOption {
|
wireguard = mkOption {
|
||||||
type = type.bool;
|
type = types.bool;
|
||||||
default = false;
|
default = false;
|
||||||
};
|
};
|
||||||
web = mkOption {
|
web = mkOption {
|
||||||
type = type.bool;
|
type = types.bool;
|
||||||
default = false;
|
default = false;
|
||||||
};
|
};
|
||||||
nftables = {
|
nftables = {
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
type = type.bool;
|
type = types.bool;
|
||||||
default = false;
|
default = false;
|
||||||
};
|
};
|
||||||
ifs = mkOption {
|
ifs = mkOption {
|
||||||
|
|||||||
Reference in New Issue
Block a user