mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-04 01:07:14 +08:00
10 lines
168 B
Nix
10 lines
168 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
../.
|
|
];
|
|
|
|
# without throttled, our CPU (i5-1235u) did not boost beyond 1300MHz
|
|
services.throttled.enable = lib.mkDefault true;
|
|
}
|