feat: HP probook 440G5 config

This commit is contained in:
Václav Klecanda
2024-12-28 21:14:45 +01:00
committed by mergify[bot]
parent b539957839
commit 61c79181e7
3 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
{ config, lib, ... }:
{
# https://www.intel.com/content/www/us/en/products/sku/124967/intel-core-i58250u-processor-6m-cache-up-to-3-40-ghz/specifications.html
# this one works: https://nixos.wiki/wiki/Accelerated_Video_Playback
imports = [
../../../common/cpu/intel/kaby-lake
../../../common/pc
../../../common/pc/laptop
../../../common/pc/laptop/ssd
];
config = {
services.thermald.enable = lib.mkDefault true;
};
}