mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
5a00ea423a
This is handled by TLP, so we don't need to set that explicitly.
13 lines
325 B
Nix
13 lines
325 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
imports = [ ../. ];
|
|
|
|
# TODO: fix in NixOS/nixpkgs
|
|
# Disable governor set in hardware-configuration.nix,
|
|
# required when services.tlp.enable is true:
|
|
powerManagement.cpuFreqGovernor =
|
|
lib.mkIf config.services.tlp.enable (lib.mkForce null);
|
|
|
|
services.tlp.enable = lib.mkDefault true;
|
|
}
|