This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user