diff --git a/README.md b/README.md index bfeb291..ab28e31 100644 --- a/README.md +++ b/README.md @@ -180,6 +180,7 @@ See code for all available configurations. | [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) | `` | | [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 ea375a5..a239fcd 100644 --- a/flake.nix +++ b/flake.nix @@ -119,6 +119,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-laptop-14s-dq2024nf = import ./hp/laptop/14s-dq2024nf; huawei-machc-wa = import ./huawei/machc-wa; hp-notebook-14-df0023 = import ./hp/notebook/14-df0023; intel-nuc-8i7beh = import ./intel/nuc/8i7beh; diff --git a/hp/laptop/14s-dq2024nf/default.nix b/hp/laptop/14s-dq2024nf/default.nix new file mode 100644 index 0000000..08a48b3 --- /dev/null +++ b/hp/laptop/14s-dq2024nf/default.nix @@ -0,0 +1,11 @@ +{ config, lib, ... }: + +{ + imports = [ + ../../../common/cpu/intel + ../../../common/gpu/intel/tiger-lake + ../../../common/pc + ../../../common/pc/laptop + ../../../common/pc/laptop/ssd + ]; +}