Remove hack for turning off wifi power saving from quark shell init.

This commit is contained in:
Tom Alexander
2025-10-05 14:55:42 -04:00
parent 69b6a81b8b
commit fb7b1322da
2 changed files with 0 additions and 17 deletions

View File

@@ -1,16 +0,0 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
config = {
environment.loginShellInit = lib.mkIf (!config.me.buildingIso) ''
doas iw dev wlan0 set power_save off
'';
};
}