From d43d5ad52aebe85890f27fae34481c10d17e2ef2 Mon Sep 17 00:00:00 2001 From: Quinn Dougherty Date: Mon, 31 Oct 2022 09:09:33 -0400 Subject: [PATCH] Latitude 3340: init --- README.md | 3 ++- dell/latitude/3340/default.nix | 9 +++++++++ flake.nix | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 dell/latitude/3340/default.nix diff --git a/README.md b/README.md index 0c81589..528aa68 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,7 @@ See code for all available configurations. | [Dell Inspiron 5509](dell/inspiron/5509) | `` | | [Dell Inspiron 5515](dell/inspiron/5515) | `` | | [Dell Inspiron 7405](dell/inspiron/7405) | `` | +| [Dell Latitude 3340](dell/latitude/3340) | `` | | [Dell Latitude 3480](dell/latitude/3480) | `` | | [Dell Latitude 5520](dell/latitude/5520) | `` | | [Dell Latitude 7490](dell/latitude/7490) | `` | @@ -117,7 +118,7 @@ See code for all available configurations. | [Framework 12th Gen Intel Core](framework/12th-gen-intel) | `` | | [FriendlyARM NanoPC-T4](friendlyarm/nanopc-t4) | `` | | [GPD MicroPC](gpd/micropc) | `` | -| [GPD Pocket 3](gpd/pocket-3) | `` | +| [GPD Pocket 3](gpd/pocket-3) | `` | | [Google Pixelbook](google/pixelbook) | `` | | [HP Elitebook 2560p](hp/elitebook/2560p) | `` | | [Intel NUC 8i7BEH](intel/nuc/8i7beh/) | `` | diff --git a/dell/latitude/3340/default.nix b/dell/latitude/3340/default.nix new file mode 100644 index 0000000..c7cf888 --- /dev/null +++ b/dell/latitude/3340/default.nix @@ -0,0 +1,9 @@ +{ lib, pkgs, ... }: + +{ + imports = [ + ../../../common/cpu/intel + ../../../common/pc/laptop + ../../../common/pc/laptop/ssd + ]; +} diff --git a/flake.nix b/flake.nix index 2391384..238d2d7 100644 --- a/flake.nix +++ b/flake.nix @@ -24,6 +24,7 @@ dell-inspiron-5509 = import ./dell/inspiron/5509; dell-inspiron-5515 = import ./dell/inspiron/5515; dell-inspiron-7405 = import ./dell/inspiron/7405; + dell-latitude-3340 = import ./dell/latitude/3340; dell-latitude-3480 = import ./dell/latitude/3480; dell-latitude-5520 = import ./dell/latitude/5520; dell-latitude-7490 = import ./dell/latitude/7490;