My Nix Configuration
2
fork

Configure Feed

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

[prefect] update networking config

dish d783dabf f4a12463

+13 -3
+13 -3
hosts/prefect/networking.nix
··· 19 19 name_servers="172.20.0.53 172.23.0.53 fd42:d42:d42:53::1 fd42:d42:d42:54::1 2a01:4ff:ff00::add:2 2a01:4ff:ff00::add:1 185.12.64.1 185.12.64.2 100.64.0.3 45.11.45.11" 20 20 # name_servers="100.64.0.3" 21 21 ''; 22 - interfaces.enp1s0 = { 22 + interfaces.enp0s3 = { 23 23 ipv6.addresses = [ 24 24 { 25 - address = "2a01:4ff:f0:98bf::1"; 25 + address = "2a0a:4cc0:2000:3b64::1"; 26 26 prefixLength = 64; 27 27 } 28 28 ]; 29 + ipv4.addresses = [ 30 + { 31 + address = "152.53.80.144"; 32 + prefixLength = 22; 33 + } 34 + ]; 35 + }; 36 + defaultGateway = { 37 + address = "152.53.80.1"; 38 + interface = "enp0s3"; 29 39 }; 30 40 defaultGateway6 = { 31 41 address = "fe80::1"; 32 - interface = "enp1s0"; 42 + interface = "enp0s3"; 33 43 }; 34 44 }; 35 45 }