summaryrefslogtreecommitdiff
path: root/services/networkmanager.nix
blob: a12d27176623104e623bcfa104743e7e594da203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, ... }:
{
  networking.networkmanager = {
    enable = true;
    # dnsmasq will handle this...
    dns = "none";
    appendNameservers = [
      "1.1.1.1"
      "1.0.0.1"
      "9.9.9.9"
      "208.67.222.222"
      "208.67.220.220"
    ];
  };
}