mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
18 lines
271 B
Nix
18 lines
271 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
powertop
|
|
s-tui
|
|
];
|
|
|
|
powerManagement = {
|
|
cpuFreqGovernor = "powersave";
|
|
powertop.enable = true;
|
|
};
|
|
|
|
services = {
|
|
thermald.enable = true;
|
|
upower.enable = true;
|
|
};
|
|
}
|