Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

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

Networking updates for misaki

+14 -4
+14 -4
networking.nix
··· 14 14 }; 15 15 16 16 networking.interfaces = { 17 - enp4s0f1.ipv4.addresses = [{ 18 - address = "192.168.1.3"; 19 - prefixLength = 24; 20 - }]; 17 + enp4s0f1 = { 18 + ipv4.addresses = [{ 19 + address = "192.168.1.3"; 20 + prefixLength = 24; 21 + }]; 22 + }; 21 23 }; 24 + networking.defaultGateway = { 25 + address = "192.168.1.1"; 26 + interface = "enp4s0f1"; 27 + }; 28 + 29 + networking.nameservers = [ 30 + "192.168.1.5" "45.90.28.93" "45.90.30.93" 31 + ]; 22 32 networking.useNetworkd = true; 23 33 # TODO: static IP @ 192.168.1.2 24 34