talos: explicitely enable wifi powersave

this way I know what to toggle if I want to switch it off in the future
This commit is contained in:
Antoine Martin 2024-03-04 16:24:00 +01:00
parent 3d10eef3ac
commit 3e23486ecb

View file

@ -44,7 +44,10 @@
networking.domain = "alarsyo.net"; networking.domain = "alarsyo.net";
# Pick only one of the below networking options. # Pick only one of the below networking options.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. networking.networkmanager = {
enable = true;
wifi.powersave = true;
};
# Set your time zone. # Set your time zone.
time.timeZone = "Europe/Paris"; time.timeZone = "Europe/Paris";