From a5d6c2ef210a2f8c366e1ad4518f559f592c2b63 Mon Sep 17 00:00:00 2001 From: Jan Grosser Date: Tue, 23 Jul 2024 20:27:37 +0200 Subject: [PATCH] Disabled powersafe for networkmanager Disabled power safe for network manager in configuration.nix Background is that the wifi adapter has bad performance when on battery but no issues when running on AC power. Unfortunately, this had no effect. See: https://discourse.nixos.org/t/bad-wifi-performance-on-battery/49398 --- hosts/p14s/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/p14s/configuration.nix b/hosts/p14s/configuration.nix index 4e5c474..997715a 100644 --- a/hosts/p14s/configuration.nix +++ b/hosts/p14s/configuration.nix @@ -29,6 +29,7 @@ # Enable networking networking.networkmanager.enable = true; + networking.networkmanager.wifi.powersave = false; # Set your time zone. time.timeZone = "Europe/Berlin";