lenovo/thinkpad/l480: init

This commit is contained in:
Daniel Olsen
2024-05-03 10:20:34 +02:00
committed by mergify[bot]
parent 68d680c1b7
commit 3f01731119
3 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ lib, ... }:
{
imports = [
../.
../../../common/cpu/intel/kaby-lake
../../../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";
}