16 lines
166 B
Nix
16 lines
166 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
power-profiles-daemon
|
|
];
|
|
|
|
services.power-profiles-daemon.enable = true;
|
|
|
|
}
|