summaryrefslogtreecommitdiff
path: root/os/pc/modules/network.nix
blob: 6e079635808345d533dc94d26bdeda4bad7fdbfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ ... }: {
  networking.wireless.iwd = { 
    enable = true;

    settings = {
      General.EnableNetworkConfiguration = true;
      Network.NameResolvingService = "resolvconf";
    };
  };
}