1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{ config, lib, pkgs, ... }: { networking = { usePredictableInterfaceNames = false; enableIPv6 = true; tempAddresses = "disabled"; interfaces.eth0.useDHCP = true; nameservers = [ "1.1.1.1" "8.8.8.8" ]; dhcpcd.extraConfig = '' nohook resolv.conf ''; }; }