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
Signed by: talexander
GPG Key ID: 36C99E8B3C39D85F
2 changed files with 0 additions and 17 deletions

View File

@ -10,7 +10,6 @@
./distributed_build.nix
./hardware-configuration.nix
./power_management.nix
./wifi.nix
];
config = {

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
'';
};
}