summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2019-05-13 06:30:01 +0100
committerGitHub <noreply@github.com>2019-05-13 06:30:01 +0100
commite585114348838d55c228484b2cfb5771c5853d4d (patch)
treee511b213986a82430e966cce954278e5f38fc878
parent1e4abf794a6b32fbad38fe427fb8c390eee53e2c (diff)
parenta5db2c9eaf4a061cf8508517d1faad949b923252 (diff)
Merge pull request #107 from JorisE/master
Added basic support for the t470s
-rw-r--r--README.md2
-rw-r--r--lenovo/thinkpad/t470s/default.nix9
2 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 60fb9e9..fbe9ff6 100644
--- a/README.md
+++ b/README.md
@@ -43,6 +43,8 @@ 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>` |
| Lenovo ThinkPad X230 | `<nixos-hardware/lenovo/thinkpad/x230>` |
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
+ ../.
+ ];
+}