NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: disable WiFi power saving mode on NetworkManager

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+7 -1
+3 -1
shared/networking.nix
··· 16 16 fallbackDns = [ "1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one" ]; 17 17 dnsovertls = "true"; 18 18 }; 19 - } 19 + 20 + networking.networkmanager.wifi.powersave = false; 21 + }
+4
shared/server/ssh.nix
··· 19 19 20 20 programs.mosh.enable = true; 21 21 22 + # disable hibernation and hybrid sleep 23 + systemd.targets.hibernate.enable = false; 24 + systemd.targets.hybrid-sleep.enable = false; 25 + 22 26 }