about summary refs log tree commit diff stats
path: root/hosts/mammun/networking.nix
blob: 1ebd0a7ca61309e2cb8ed3a2ff1741ca0c734c2a (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 = "systemd-resolved";
      wifi = {
        powersave = true;
      };
    };
    hostName = "mammun";
  };
}