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

  config = {
    services.resolved = {
      enable = true;
      domains = [
        "1.1.1.1"
        "1.0.0.1"
      ];
    };
    networking.resolvconf.enable = false;

    systemd.network.wait-online.enable = false;
  };
}