Skip to content

Commit

Permalink
dell/xps: enable thermald service
Browse files Browse the repository at this point in the history
  • Loading branch information
disassembler committed Oct 27, 2019
1 parent 1ea7efa commit 4916acd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dell/xps/13-9360/default.nix
Expand Up @@ -13,7 +13,7 @@
efi.canTouchEfiVariables = lib.mkDefault true;
systemd-boot.enable = lib.mkDefault true;
};

hardware.firmware = lib.mkBefore [ pkgs.qca6174-firmware ];

# TODO: move to general HiDPI profile
Expand All @@ -23,4 +23,7 @@
nixpkgs.overlays = [(final: previous: {
qca6174-firmware = final.callPackage ./qca6174-firmware.nix {};
})];

# This will save you money and possibly your life!
services.thermald.enable = true;
}
3 changes: 3 additions & 0 deletions dell/xps/13-9370/default.nix
Expand Up @@ -14,4 +14,7 @@
boot.blacklistedKernelModules = [ "psmouse" ];

services.throttled.enable = lib.mkDefault true;

# This will save you money and possibly your life!
services.thermald.enable = true;
}
3 changes: 3 additions & 0 deletions dell/xps/13-9380/default.nix
Expand Up @@ -12,4 +12,7 @@

# touchpad goes over i2c
boot.blacklistedKernelModules = [ "psmouse" ];

# This will save you money and possibly your life!
services.thermald.enable = true;
}
3 changes: 3 additions & 0 deletions dell/xps/15-9550/default.nix
Expand Up @@ -10,6 +10,9 @@
boot.loader.systemd-boot.enable = lib.mkDefault true;
boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;

# This will save you money and possibly your life!
services.thermald.enable = true;

# To just use Intel integrated graphics with Intel's open source driver
# hardware.nvidiaOptimus.disable = true;
}

0 comments on commit 4916acd

Please sign in to comment.