Merge pull request #24928 from Mic92/powertop

powertop: add module
This commit is contained in:
Jörg Thalheim 2017-04-15 15:19:13 +02:00 committed by GitHub
commit 43c436af27
2 changed files with 28 additions and 0 deletions

View File

@ -659,6 +659,7 @@
./tasks/scsi-link-power-management.nix
./tasks/swraid.nix
./tasks/trackpoint.nix
./tasks/powertop.nix
./testing/service-runner.nix
./virtualisation/container-config.nix
./virtualisation/containers.nix

View File

@ -0,0 +1,27 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.powerManagment.powertop;
in {
###### interface
options.powerManagment.powertop.enable = mkEnableOption "powertop auto tuning on startup";
###### implementation
config = mkIf (cfg.enable) {
systemd.services = {
powertop = {
wantedBy = [ "multi-user.target" ];
description = "Powertop tunings";
serviceConfig = {
Type = "oneshot";
RemainAfterExit = "yes";
ExecStart = "${pkgs.powertop}/bin/powertop --auto-tune";
};
};
};
};
}