diff --git a/hosts/hainich/services/wink.nix b/hosts/hainich/services/wink.nix index 689be72..b211f3e 100644 --- a/hosts/hainich/services/wink.nix +++ b/hosts/hainich/services/wink.nix @@ -64,7 +64,14 @@ }; }; - + services.coredns = { + enable = true; + config = '' + .:53 { + forward . 1.1.1.1 + } + ''; + }; }; }; @@ -75,6 +82,9 @@ enableACME = true; }; + networking.nat.enable = true; + networking.nat.internalInterfaces = ["ve-wink"]; + networking.nat.externalInterface = "enp6s0"; }