mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 01:07:14 +08:00
9 lines
169 B
Nix
9 lines
169 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
boot.kernelParams = [ "acpi_rev_override" ];
|
|
|
|
# This will save you money and possibly your life!
|
|
services.thermald.enable = lib.mkDefault true;
|
|
}
|