aboutsummaryrefslogtreecommitdiff
path: root/modules/common/networking.nix
blob: 0f9aaca309bd6881525dbd1802651307de7d4463 (plain)
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
    '';
  };
}