Add powertop.

This commit is contained in:
Tom Alexander 2024-12-31 07:42:46 -05:00
parent 77ae96ca7a
commit d9bc4f15d8
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 15 additions and 0 deletions

View File

@ -4,6 +4,7 @@
./hardware-configuration.nix
./disk-config.nix
./optimized_build.nix
./power_management.nix
];
# Generate with `head -c4 /dev/urandom | od -A none -t x4`

View File

@ -0,0 +1,14 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
environment.systemPackages = with pkgs; [
powertop
];
}