From 2d52e3da66a9bf282d2dec2290c4410e7d175ae9 Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Thu, 4 Jul 2024 20:20:01 +1000 Subject: [PATCH] cuallaidh: add ipv6 support --- profiles/ipv6.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 profiles/ipv6.nix diff --git a/profiles/ipv6.nix b/profiles/ipv6.nix new file mode 100644 index 0000000..2070c70 --- /dev/null +++ b/profiles/ipv6.nix @@ -0,0 +1,12 @@ +# NixOps configuration for the hosts running a TURN server (coturn) +{ + config, + pkgs, + lib, + ... +}: { + networking = { + enableIPv6 = true; + tempAddresses = "disabled"; + }; +}