Added Fixed Wireguard ips to hosts dns lookup

This commit is contained in:
2026-06-29 18:13:11 +02:00
parent 73ff128705
commit 6668c810d3
5 changed files with 38 additions and 12 deletions
+14 -4
View File
@@ -130,10 +130,20 @@
};
};
networking.firewall.allowedTCPPorts = [
9002
3100
];
networking = {
hosts = {
"10.10.0.1" = [ "proxy.cyperpunk.de" ];
"10.10.0.2" = [ "controller.cyperpunk.de" ];
"10.10.0.3" = [ "mac.cyperpunk.de" ];
"10.10.0.30" = [ "node1.cyperpunk.de" ];
"10.10.0.31" = [ "node2.cyperpunk.de" ];
"10.10.0.40" = [ "desktop.cyperpunk.de" ];
};
firewall.allowedTCPPorts = [
9002
3100
];
};
users.users.${primaryUser} = {
home = "/home/${primaryUser}";