diff options
Diffstat (limited to 'modules/nycmesh.nix')
-rw-r--r-- | modules/nycmesh.nix | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/modules/nycmesh.nix b/modules/nycmesh.nix new file mode 100644 index 0000000..e3a3f26 --- /dev/null +++ b/modules/nycmesh.nix @@ -0,0 +1,39 @@ +{ config, lib, pkgs, ... }: + +let + cfg = config.orbekk.nycmesh; +in +{ + options = { + orbekk.nycmesh = { + enable = lib.mkEnableOption "Enable VPN"; + + listenPort = lib.mkOption { + type = lib.types.port; + default = 40423; + description = "wireguard local port"; + }; + }; + }; + + config = lib.mkIf cfg.enable { + orbekk.simple-firewall.allowedUDPPorts = [ cfg.listenPort ]; + + networking.wireguard = { + enable = true; + interfaces.nycmesh = { + privateKeyFile = "/opt/secret/wireguard/nycmesh.private"; + ips = [ "10.70.90.245/32" "fc00:bbbb:bbbb:bb01::7:5af4/128" ]; + allowedIPsAsRoutes = false; + listenPort = cfg.listenPort; + peers = [ + { + endpoint = "ca10-wireguard.nycmesh.net:51820"; + publicKey = "pAVh6WJtyF7ktvavez399L4A615TXOAaUHQgpwJ4EHU="; + allowedIPs = [ "0.0.0.0/0" "::0/0" ]; + } + ]; + }; + }; + }; +} |