diff --git a/modules/shared/syscfg/net.nix b/modules/shared/syscfg/net.nix new file mode 100644 index 0000000..06bd669 --- /dev/null +++ b/modules/shared/syscfg/net.nix @@ -0,0 +1,14 @@ +{ lib,... }: +with lib; { + ble.enable = mkOption { type = types.bool; default = false; }; + wlp = { + enable = mkOption { type = types.bool; default = false; }; + nif = mkOption { type = types.str; default = ""; }; + }; + wg = { + enable = mkOption { type = types.bool; default = false; }; + ip4 = mkOption { type = types.str; default = ""; }; + ip6 = mkOption { type = types.str; default = ""; }; + pubkey = mkOption { type = types.str; default = ""; }; + }; +} \ No newline at end of file