mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 16:57:14 +08:00
fixes https://github.com/NixOS/nixos-hardware/issues/1114 and tlp also no longer recommands it.
13 lines
175 B
Nix
13 lines
175 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/intel
|
|
../../../common/pc/laptop/ssd/default.nix
|
|
];
|
|
|
|
services.throttled.enable = lib.mkDefault true;
|
|
}
|
|
|