my nixos config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ip adresses of the new vps which i again forgot to commit

chfour 1a7058d3 c27c93b3

+7 -4
+7 -4
machines/fovps/networking.nix
··· 6 6 systemd.network.networks."10-wan" = { 7 7 matchConfig.Name = "ens18"; 8 8 9 + networkConfig.DHCP = "ipv4"; 10 + 9 11 # apparently ipv6s are done manually 10 12 # https://contabo.com/blog/adding-ipv6-connectivity-to-your-server/ 11 13 # idk anymore skull emoji 12 14 13 - networkConfig = { 14 - DHCP = "ipv4"; 15 - }; 16 15 address = [ 17 - "2a02:c207:2087:819::1/64" 16 + "2a02:c207:2177:8888::1/64" 18 17 ]; 19 18 routes = [ 20 19 { routeConfig.Gateway = "fe80::1"; } 20 + ]; 21 + dns = [ 22 + "2a02:c207::1:53" 23 + "2a02:c207::2:53" 21 24 ]; 22 25 }; 23 26 }