mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-02-21 01:17:53 +01:00
9 lines
210 B
Nix
9 lines
210 B
Nix
{ config, lib, ... }:
|
|
{
|
|
# Let's not thermal throttle
|
|
services.thermald.enable = lib.mkIf (lib.all (x: x) [
|
|
(config.nixpkgs.system == "x86_64-linux")
|
|
(!config.boot.isContainer or false)
|
|
]) true;
|
|
}
|