From 96f1909187b43923bb2948dd012e4e6bbd47c459 Mon Sep 17 00:00:00 2001 From: 0xTux <0xtux@pm.me> Date: Sat, 4 May 2024 01:53:06 +0530 Subject: [PATCH] disable wifi powersave --- hosts/canopus/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/canopus/default.nix b/hosts/canopus/default.nix index 98e2797..2247bf4 100755 --- a/hosts/canopus/default.nix +++ b/hosts/canopus/default.nix @@ -50,7 +50,10 @@ networking = { hostName = "canopus"; - networkmanager.enable = true; + networkmanager = { + enable = true; + wifi.powersave = false; + }; firewall = { enable = true; allowedTCPPorts = [80 443 3000 6666 8081];