2024-05-03 04:20:34 -04:00
|
|
|
{ lib, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../.
|
2024-06-28 20:23:23 -04:00
|
|
|
../../../common/gpu/intel/kaby-lake
|
2024-05-03 04:20:34 -04:00
|
|
|
../../../common/pc/laptop/ssd
|
|
|
|
];
|
|
|
|
|
|
|
|
# available cpufreq governors: performance powersave
|
|
|
|
# The powersave mode locks the cpu to 700Mhz which is not really usable
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
|
|
|
}
|