about summary refs log tree commit diff
path: root/hosts/carmel/networking.nix
blob: f4a1c6f894136ea6b684cf855588ab1aef9a84bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ ... }: {
  # Use systemd-networkd for networking
  systemd.network = {
    enable = true;
    networks = {
      enp9s0 = {
        matchConfig.Name = "enp9s0";
        networkConfig = { DHCP = "yes"; };
        extraConfig = ''
          [DHCPv4]
          UseDNS=yes
          UseDomains=yes
        '';
      };
    };
  };
}