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

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