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

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

    networking.resolvconf.enable = false;
  };
}