aboutsummaryrefslogtreecommitdiff
path: root/modules/services/system/networking/default.nix
blob: 4908b6fa4b498a557a287e5d0757dc9add3200a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  imports = [
    ./iwd.nix
    ./nm.nix
  ];

  config = {
    services.resolved = {
      enable = true;
      domains = [
        "10.0.0.1"
        "10.0.0.10"
      ];
    };

    networking.resolvconf.enable = false;
  };
}