trying to generalize names

This commit is contained in:
Julian Sutter 2023-01-05 23:26:57 -08:00
parent 4166de0850
commit d1478d93c4
3 changed files with 67 additions and 59 deletions

24
systems/framework.nix Normal file
View file

@ -0,0 +1,24 @@
{ 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";
};
};
}