Merge pull request #127 from NixOS/dell-thermald

dell/xps: enable thermald service
This commit is contained in:
Domen Kožar 2019-10-27 09:15:06 +01:00 committed by GitHub
commit c0182a0698
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 1 deletions

View File

@ -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
@ -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;
}

View File

@ -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;
}

View File

@ -12,4 +12,7 @@
# touchpad goes over i2c
boot.blacklistedKernelModules = [ "psmouse" ];
# This will save you money and possibly your life!
services.thermald.enable = true;
}

View File

@ -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;
}