nixos-config/system/laptop.nix
Christoph Heiss 6955ea6a96
machines: Add trek, my Framework laptop
.. and with it, all the infrastructure for desktop systems; as well as
laptop-specific things like WiFi and TLP.

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-04-08 18:33:17 +02:00

18 lines
363 B
Nix

{
services.tlp = {
enable = true;
settings = {
# Audio
SOUND_POWER_SAVE_ON_AC = 0;
# File systems
MAX_LOST_WORK_SECS_ON_AC = 10;
MAX_LOST_WORK_SECS_ON_BAT = 30;
# Radio devices
DEVICES_TO_DISABLE_ON_STARTUP = "bluetooth wwan";
# USB
USB_EXCLUDE_AUDIO = 0;
USB_EXCLUDE_PHONE = 1;
};
};
}