mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
11 lines
167 B
Nix
11 lines
167 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
in {
|
|
config = mkIf (config.machine.cpuVendor == "intel") {
|
|
services.thermald.enable = true;
|
|
};
|
|
}
|