Files
nix/hosts/common/configs/system/powertop/default.nix
2025-02-10 13:30:18 +00:00

7 lines
187 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ powertop ];
powerManagement.powertop.enable = true;
systemd.services.powertop.postStart = builtins.readFile ./mouse.sh;
}