mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
11 lines
244 B
Nix
11 lines
244 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
# Solution to rcu_sched freezing
|
||
|
boot.kernelParams = [ "acpi_rev_override" ];
|
||
|
boot.kernelModules = [ "kvm-intel" ];
|
||
|
|
||
|
# This will save you money and possibly your life!
|
||
|
services.thermald.enable = lib.mkDefault true;
|
||
|
}
|