1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-05 19:03:28 +02:00
nixos-hardware/common/pc/laptop/default.nix

14 lines
325 B
Nix
Raw Normal View History

{ 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;
}