aboutsummaryrefslogtreecommitdiff
path: root/modules/services/nixos/networking/default.nix
blob: 42cab1e923f3be13cc30a7eee2ba0d2d5a97b595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  imports = [
    ./iwd.nix
    ./networkmanager.nix
    ./static.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;
  };
}