From 61c79181e77ef774ab0468b28a24bc2647d498d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Klecanda?= Date: Sat, 28 Dec 2024 21:14:45 +0100 Subject: [PATCH] feat: HP probook 440G5 config --- README.md | 3 ++- flake.nix | 1 + hp/probook/440G5/default.nix | 16 ++++++++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 hp/probook/440G5/default.nix diff --git a/README.md b/README.md index 4c25e9aa..b71337bb 100644 --- a/README.md +++ b/README.md @@ -191,8 +191,9 @@ See code for all available configurations. | [HP Elitebook 845g7](hp/elitebook/845/g7) | `` | | [HP Elitebook 845g8](hp/elitebook/845/g8) | `` | | [HP Elitebook 845g9](hp/elitebook/845/g9) | `` | -| [HP Notebook 14-df0023](hp/notebook/14-df0023) | `` | | [HP Laptop 14s-dq2024nf](hp/laptop/14s-dq2024nf) | `` | +| [HP Notebook 14-df0023](hp/notebook/14-df0023) | `` | +| [HP Probook 440G5](hp/probook/440g5) | `` | | [Huawei Matebook X Pro (2020)](huawei/machc-wa) | `` | | [i.MX8QuadMax Multisensory Enablement Kit](nxp/imx8qm-mek/) | `` | | [Intel NUC 8i7BEH](intel/nuc/8i7beh/) | `` | diff --git a/flake.nix b/flake.nix index ceb2bf40..c30a3853 100644 --- a/flake.nix +++ b/flake.nix @@ -131,6 +131,7 @@ hp-elitebook-845g7 = import ./hp/elitebook/845/g7; hp-elitebook-845g8 = import ./hp/elitebook/845/g8; hp-elitebook-845g9 = import ./hp/elitebook/845/g9; + hp-probook-440G5 = import ./hp/probook/440G5; hp-laptop-14s-dq2024nf = import ./hp/laptop/14s-dq2024nf; huawei-machc-wa = import ./huawei/machc-wa; hp-notebook-14-df0023 = import ./hp/notebook/14-df0023; diff --git a/hp/probook/440G5/default.nix b/hp/probook/440G5/default.nix new file mode 100644 index 00000000..7cc5a234 --- /dev/null +++ b/hp/probook/440G5/default.nix @@ -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; + }; +}