profile/powersave: init from legacy

This commit is contained in:
Felix Buehler 2023-02-15 20:56:33 +01:00
parent 3c3fc6f527
commit 2d7eeb3aaf
5 changed files with 28 additions and 19 deletions

View file

@ -1,18 +0,0 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
powertop
s-tui
];
powerManagement = {
cpuFreqGovernor = "powersave";
powertop.enable = true;
};
services = {
thermald.enable = true;
upower.enable = true;
};
}