summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2018-12-09 16:50:58 +0100
committerlassulus <lassulus@lassul.us>2018-12-09 16:50:58 +0100
commit5f354c6209c26c981dbe61326ad776e5c387be0e (patch)
treed84f7a5e6c33f1eee38a3ff0c174d106310a240c
parent232e4d8615cfe9f20915dec25f59679583e80183 (diff)
lib types nets: add wireguard
-rw-r--r--lib/types.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/types.nix b/lib/types.nix
index 41e7515..17c1688 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -192,6 +192,28 @@ rec {
}));
default = null;
};
+ wireguard = mkOption {
+ type = nullOr (submodule ({ config, ... }: {
+ options = {
+ port = mkOption {
+ type = int;
+ description = "tinc port to use to connect to host";
+ default = 51820;
+ };
+ pubkey = mkOption {
+ type = wireguard-pubkey;
+ };
+ subnets = mkOption {
+ type = listOf cidr;
+ description = ''
+ wireguard subnets,
+ this defines how routing behaves for hosts that can't reach each other.
+ '';
+ default = [];
+ };
+ };
+ }));
+ };
};
});
@@ -548,4 +570,6 @@ rec {
check = filename.check;
merge = mergeOneOption;
};
+
+ wireguard-pubkey = str;
}