24 lines
No EOL
454 B
Nix
24 lines
No EOL
454 B
Nix
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
# /etc/nixos/hardware-configuration.nix
|
|
/etc/nixos/user-jsutter.nix
|
|
];
|
|
|
|
|
|
# Power Stuff
|
|
services.power-profiles-daemon.enable = false;
|
|
services.tlp = {
|
|
enable = true;
|
|
settings = {
|
|
CPU_BOOST_ON_BAT = 0;
|
|
CPU_SCALING_GOVERNOR_ON_BATTERY = "powersave";
|
|
START_CHARGE_THRESH_BAT0 = 90;
|
|
STOP_CHARGE_THRESH_BAT0 = 97;
|
|
RUNTIME_PM_ON_BAT = "auto";
|
|
};
|
|
};
|
|
} |