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.

FIX: ipv6 networking

+7
+7
networking.nix
··· 13 13 linkConfig.RequiredForOnline = "no"; 14 14 }; 15 15 16 + networking.tempAddresses = "disabled"; 17 + 16 18 networking.interfaces = { 17 19 enp4s0f1 = { 18 20 ipv4.addresses = [{ ··· 23 25 }; 24 26 networking.defaultGateway = { 25 27 address = "192.168.1.1"; 28 + interface = "enp4s0f1"; 29 + }; 30 + 31 + networking.defaultGateway6 = { 32 + address = "fe80::2870:4eff:fe84:d884"; 26 33 interface = "enp4s0f1"; 27 34 }; 28 35