summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-10-07 22:06:46 +0100
committerGitHub <noreply@github.com>2017-10-07 22:06:46 +0100
commitb256b2778ac0e85de58a4a9637ca1673283f3be8 (patch)
treea1637e61f2446a7984ba0671c3e5ecd5d4917495 /nixos
parent7a566fc06daac5474c8cc4049421d006ab2ea30b (diff)
parentfadb906b2f7091a9b973a6b1d79a4858e975b785 (diff)
downloadnixpkgs-b256b2778ac0e85de58a4a9637ca1673283f3be8.tar
nixpkgs-b256b2778ac0e85de58a4a9637ca1673283f3be8.tar.gz
nixpkgs-b256b2778ac0e85de58a4a9637ca1673283f3be8.tar.bz2
nixpkgs-b256b2778ac0e85de58a4a9637ca1673283f3be8.tar.lz
nixpkgs-b256b2778ac0e85de58a4a9637ca1673283f3be8.tar.xz
nixpkgs-b256b2778ac0e85de58a4a9637ca1673283f3be8.tar.zst
nixpkgs-b256b2778ac0e85de58a4a9637ca1673283f3be8.zip
Merge pull request #30204 from lheckemann/powertop-fix
powertop module: add kmod to path
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/tasks/powertop.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/tasks/powertop.nix b/nixos/modules/tasks/powertop.nix
index 0ec4974789b..609831506e1 100644
--- a/nixos/modules/tasks/powertop.nix
+++ b/nixos/modules/tasks/powertop.nix
@@ -16,6 +16,7 @@ in {
       powertop = {
         wantedBy = [ "multi-user.target" ];
         description = "Powertop tunings";
+        path = [ pkgs.kmod ];
         serviceConfig = {
           Type = "oneshot";
           RemainAfterExit = "yes";