summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoris Engbers <info@jorisengbers.nl>2019-05-08 23:52:27 +0200
committerJoris Engbers <info@jorisengbers.nl>2019-05-08 23:52:27 +0200
commita5db2c9eaf4a061cf8508517d1faad949b923252 (patch)
treee511b213986a82430e966cce954278e5f38fc878
parent127dbfd849cfe2b6d27288441bacea6a648a409e (diff)
Add basic support for the thinkpad t470s
-rw-r--r--README.md1
-rw-r--r--lenovo/thinkpad/t470s/default.nix9
2 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index 339c8b6..fbe9ff6 100644
--- a/README.md
+++ b/README.md
@@ -43,6 +43,7 @@ imports = [
| Lenovo ThinkPad T440p | `<nixos-hardware/lenovo/thinkpad/t440p>` |
| Lenovo ThinkPad T450s | `<nixos-hardware/lenovo/thinkpad/t450s>` |
| Lenovo ThinkPad T460s | `<nixos-hardware/lenovo/thinkpad/t460s>` |
+| Lenovo ThinkPad T470s | `<nixos-hardware/lenovo/thinkpad/t470s>` |
| Lenovo ThinkPad T480s | `<nixos-hardware/lenovo/thinkpad/t480s>` |
| Lenovo ThinkPad X140e | `<nixos-hardware/lenovo/thinkpad/x140e>` |
| Lenovo ThinkPad X220 | `<nixos-hardware/lenovo/thinkpad/x220>` |
diff --git a/lenovo/thinkpad/t470s/default.nix b/lenovo/thinkpad/t470s/default.nix
new file mode 100644
index 0000000..e623371
--- /dev/null
+++ b/lenovo/thinkpad/t470s/default.nix
@@ -0,0 +1,9 @@
+{ config, lib, pkgs, ... }:
+
+{
+ imports = [
+ ../../../common/cpu/intel
+ ../../../common/pc/laptop/acpi_call.nix
+ ../.
+ ];
+}