Sandbox
Some checks failed
Nix Build / build-nixos (push) Has been cancelled

This commit is contained in:
soraefir
2024-04-14 21:22:22 +02:00
parent 972cb47e3f
commit 6cb2c2bd00
9 changed files with 73 additions and 9 deletions

View File

@ -45,16 +45,28 @@ in with lib; {
};
net = {
wlp = {
enable = mkOption { type = types.bool; };
nif = mkOption { type = types.str; };
enable = mkOption {
type = types.bool;
default = false;
};
nif = mkOption {
type = types.str;
default = "";
};
};
wg = {
enable = mkOption {
type = types.bool;
default = true;
default = false;
};
ip4 = mkOption {
type = types.str;
default = "";
};
ip6 = mkOption {
type = types.str;
default = "";
};
ip4 = mkOption { type = types.str; };
ip6 = mkOption { type = types.str; };
};
};
users = mkOption {