summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleksii Filonenko <brightone@protonmail.com>2019-11-02 12:52:58 +0200
committerEmery Hemingway <ehmry@posteo.net>2019-11-02 14:35:47 +0100
commit5575153e2d96efc8caadfc46989b11c6e64454a4 (patch)
tree6f6287c96838117d0d8cf2f64d5d933a980aa52b
parent5316e919c8e01dcff9c64c8aa3f8947e9d07680d (diff)
Add Lenovo ThinkPad T420 profile
-rw-r--r--README.md1
-rw-r--r--lenovo/thinkpad/t420/default.nix9
2 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index 648f129..f5b1268 100644
--- a/README.md
+++ b/README.md
@@ -43,6 +43,7 @@ See code for all available configurations.
| Lenovo IdeaPad Z510 | `<nixos-hardware/lenovo/ideapad/z510>` |
| Lenovo ThinkPad P53 | `<nixos-hardware/lenovo/thinkpad/p53>` |
| Lenovo ThinkPad T410 | `<nixos-hardware/lenovo/thinkpad/t410>` |
+| Lenovo ThinkPad T420 | `<nixos-hardware/lenovo/thinkpad/t420>` |
| Lenovo ThinkPad T430 | `<nixos-hardware/lenovo/thinkpad/t430>` |
| Lenovo ThinkPad T440s | `<nixos-hardware/lenovo/thinkpad/t440s>` |
| Lenovo ThinkPad T440p | `<nixos-hardware/lenovo/thinkpad/t440p>` |
diff --git a/lenovo/thinkpad/t420/default.nix b/lenovo/thinkpad/t420/default.nix
new file mode 100644
index 0000000..5d3efe8
--- /dev/null
+++ b/lenovo/thinkpad/t420/default.nix
@@ -0,0 +1,9 @@
+{ config, lib, pkgs, ... }:
+
+{
+ imports = [
+ ../.
+ ../../../common/cpu/intel
+ ../../../common/pc/laptop/acpi_call.nix
+ ];
+}