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