about summary refs log tree commit diff stats
path: root/hosts/mammun_on_vm/networking.nix
blob: 0ec9460ba330ad1a2a0b1ce870fcb12d7de101f7 (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_on_vm";
  };
}