Files
nixos-config/modules/host/network.nix
T

16 lines
296 B
Nix
Raw Normal View History

2025-03-28 18:39:35 +03:00
{
networking = {
enableIPv6 = true;
useDHCP = false;
2025-07-22 10:16:26 +03:00
nameservers = [ "64.188.64.176" "1.1.1.1" ];
2025-03-28 18:39:35 +03:00
dhcpcd.extraConfig = "nohook resolv.conf";
networkmanager = {
enable = true;
dns = "none";
2025-07-22 10:16:26 +03:00
insertNameservers = [ "64.188.64.176" "1.1.1.1" ];
2025-03-28 18:39:35 +03:00
};
};
}