nixos-hardware/dell/xps/13-9360/default.nix

12 lines
257 B
Nix
Raw Normal View History

2020-07-26 06:59:49 -04:00
{
2018-05-15 09:46:41 -04:00
imports = [
2018-05-15 12:54:18 -04:00
../../../common/cpu/intel/kaby-lake
2018-05-15 09:46:41 -04:00
../../../common/pc/laptop
];
2018-05-15 12:54:18 -04:00
boot.blacklistedKernelModules = [ "psmouse" ]; # touchpad goes over i2c
2018-05-15 09:46:41 -04:00
2019-10-27 04:02:50 -04:00
# This will save you money and possibly your life!
services.thermald.enable = true;
2018-05-15 09:46:41 -04:00
}