about summary refs log tree commit diff stats
path: root/hosts/mammun/networking.nix
blob: e243ebe0930e6159514d5bb0c90c2ec38ccd7d64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  lib,
  ...
}: {
  networking = {
    networkmanager = {
      enable = true;
      dns = "default";
      wifi = {
        powersave = true;
      };
    };
    hostName = "mammun";
  };
}