Fix types

This commit is contained in:
soraefir
2026-05-04 00:10:05 +02:00
parent ce569f16e2
commit 28fdc04c7b

View File

@@ -103,28 +103,28 @@ let
default = "/media/data";
};
arion = mkOption {
type = type.bool;
type = types.bool;
default = false;
};
sops = mkOption {
type = type.bool;
type = types.bool;
default = false;
};
openssh = mkOption {
type = type.bool;
type = types.bool;
default = false;
};
wireguard = mkOption {
type = type.bool;
type = types.bool;
default = false;
};
web = mkOption {
type = type.bool;
type = types.bool;
default = false;
};
nftables = {
enable = mkOption {
type = type.bool;
type = types.bool;
default = false;
};
ifs = mkOption {