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