nixpkgs/nixos/modules/tasks/powertop.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
660 B
Nix
Raw Normal View History

2017-04-15 14:36:10 +02:00
{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.powerManagement.powertop;
2017-04-15 14:36:10 +02:00
in
{
###### interface
options.powerManagement.powertop.enable = mkEnableOption "powertop auto tuning on startup";
2017-04-15 14:36:10 +02:00
###### implementation
config = mkIf (cfg.enable) {
systemd.services = {
powertop = {
wantedBy = [ "multi-user.target" ];
after = [ "multi-user.target" ];
2017-04-15 14:36:10 +02:00
description = "Powertop tunings";
path = [ pkgs.kmod ];
2017-04-15 14:36:10 +02:00
serviceConfig = {
Type = "oneshot";
RemainAfterExit = "yes";
ExecStart = "${pkgs.powertop}/bin/powertop --auto-tune";
};
};
};
};
}