about summary refs log tree commit diff stats
path: root/hosts/apzu/networking.nix
blob: 79d693f9ed1eb6bd192a6c647055055c17b78182 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{...}: {
  networking = {
    networkmanager = {
      enable = true;
      dns = "default";
      wifi = {
        powersave = true;
      };
    };
    hostName = "apzu";
  };
}