From 767e9083a0f277409bd5e0d0ed0c454b8c6ca3be Mon Sep 17 00:00:00 2001 From: SpectralPixel Date: Sat, 7 Feb 2026 23:34:53 +0100 Subject: [PATCH] Add Intel Ice Lake CPU config Based directly on Tiger Lake. In this branch, I am taking the config for the HP Laptor 14s-something and converting it to the HP Laptop 15s-something, which is why I expect the module to work fine despite only minor modifications. Here are the sources of info I'm using. https://browser.geekbench.com/v6/compute/4861426 https://browser.geekbench.com/v6/cpu/15840711 --- common/cpu/intel/ice-lake/cpu-only.nix | 5 +++++ common/cpu/intel/ice-lake/default.nix | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 common/cpu/intel/ice-lake/cpu-only.nix create mode 100644 common/cpu/intel/ice-lake/default.nix diff --git a/common/cpu/intel/ice-lake/cpu-only.nix b/common/cpu/intel/ice-lake/cpu-only.nix new file mode 100644 index 0000000..8289261 --- /dev/null +++ b/common/cpu/intel/ice-lake/cpu-only.nix @@ -0,0 +1,5 @@ +{ + imports = [ + ../cpu-only.nix + ]; +} diff --git a/common/cpu/intel/ice-lake/default.nix b/common/cpu/intel/ice-lake/default.nix new file mode 100644 index 0000000..e308f7d --- /dev/null +++ b/common/cpu/intel/ice-lake/default.nix @@ -0,0 +1,6 @@ +{ + imports = [ + ./cpu-only.nix + ../../../gpu/intel/ice-lake + ]; +}