Merge pull request #127 from NixOS/dell-thermald
dell/xps: enable thermald service
This commit is contained in:
commit
c0182a0698
|
@ -23,4 +23,7 @@
|
||||||
nixpkgs.overlays = [(final: previous: {
|
nixpkgs.overlays = [(final: previous: {
|
||||||
qca6174-firmware = final.callPackage ./qca6174-firmware.nix {};
|
qca6174-firmware = final.callPackage ./qca6174-firmware.nix {};
|
||||||
})];
|
})];
|
||||||
|
|
||||||
|
# This will save you money and possibly your life!
|
||||||
|
services.thermald.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,4 +14,7 @@
|
||||||
boot.blacklistedKernelModules = [ "psmouse" ];
|
boot.blacklistedKernelModules = [ "psmouse" ];
|
||||||
|
|
||||||
services.throttled.enable = lib.mkDefault true;
|
services.throttled.enable = lib.mkDefault true;
|
||||||
|
|
||||||
|
# This will save you money and possibly your life!
|
||||||
|
services.thermald.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,4 +12,7 @@
|
||||||
|
|
||||||
# touchpad goes over i2c
|
# touchpad goes over i2c
|
||||||
boot.blacklistedKernelModules = [ "psmouse" ];
|
boot.blacklistedKernelModules = [ "psmouse" ];
|
||||||
|
|
||||||
|
# This will save you money and possibly your life!
|
||||||
|
services.thermald.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
boot.loader.systemd-boot.enable = lib.mkDefault true;
|
boot.loader.systemd-boot.enable = lib.mkDefault true;
|
||||||
boot.loader.efi.canTouchEfiVariables = 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
|
# To just use Intel integrated graphics with Intel's open source driver
|
||||||
# hardware.nvidiaOptimus.disable = true;
|
# hardware.nvidiaOptimus.disable = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue