summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenzo Manacorda <lorenzo@mailbox.org>2018-10-14 00:54:06 +0200
committerLorenzo Manacorda <lorenzo@mailbox.org>2018-10-19 14:55:47 +0200
commit78ea74365a22e0ef72e3fed5d27d946883f62b11 (patch)
tree3a349211803894377caa41cd2c9e5fa258a2dec6
parent78a1e6168fcb7edde4fbd2ba3f1c8588a779135e (diff)
lenovo/thinkpad/t450s: init
-rw-r--r--README.md1
-rw-r--r--default.nix1
-rw-r--r--lenovo/thinkpad/t450s/default.nix9
3 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 3b3f34a..5bd0a15 100644
--- a/README.md
+++ b/README.md
@@ -37,6 +37,7 @@ imports = [
| Lenovo ThinkPad T410 | `<nixos-hardware/lenovo/thinkpad/t410>` |
| Lenovo ThinkPad T430 | `<nixos-hardware/lenovo/thinkpad/t430>` |
| 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 X140e | `<nixos-hardware/lenovo/thinkpad/x140e>` |
| Lenovo ThinkPad X220 | `<nixos-hardware/lenovo/thinkpad/x220>` |
diff --git a/default.nix b/default.nix
index cf01355..9f1c7a2 100644
--- a/default.nix
+++ b/default.nix
@@ -35,6 +35,7 @@ in
lenovo-thinkpad-t410 = buildProfile ./lenovo/thinkpad/t410;
lenovo-thinkpad-t440p = buildProfile ./lenovo/thinkpad/t440p;
+ lenovo-thinkpad-t450s = buildProfile ./lenovo/thinkpad/t450s;
lenovo-thinkpad-t460s = buildProfile ./lenovo/thinkpad/t460s;
lenovo-thinkpad-x140e = buildProfile ./lenovo/thinkpad/x140e;
lenovo-thinkpad-x220 = buildProfile ./lenovo/thinkpad/x220;
diff --git a/lenovo/thinkpad/t450s/default.nix b/lenovo/thinkpad/t450s/default.nix
new file mode 100644
index 0000000..026332e
--- /dev/null
+++ b/lenovo/thinkpad/t450s/default.nix
@@ -0,0 +1,9 @@
+{ config, lib, pkgs, ... }:
+
+{
+ imports = [
+ ../../../common/cpu/intel
+ ../acpi_call.nix
+ ../.
+ ];
+}