about summary refs log tree commit diff
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)
downloadnixlib-78ea74365a22e0ef72e3fed5d27d946883f62b11.tar
nixlib-78ea74365a22e0ef72e3fed5d27d946883f62b11.tar.gz
nixlib-78ea74365a22e0ef72e3fed5d27d946883f62b11.tar.bz2
nixlib-78ea74365a22e0ef72e3fed5d27d946883f62b11.tar.lz
nixlib-78ea74365a22e0ef72e3fed5d27d946883f62b11.tar.xz
nixlib-78ea74365a22e0ef72e3fed5d27d946883f62b11.tar.zst
nixlib-78ea74365a22e0ef72e3fed5d27d946883f62b11.zip
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 3b3f34a7d5a4..5bd0a155b6c9 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 cf01355a1ce8..9f1c7a2ff6f6 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 000000000000..026332e4e9cd
--- /dev/null
+++ b/lenovo/thinkpad/t450s/default.nix
@@ -0,0 +1,9 @@
+{ config, lib, pkgs, ... }:
+
+{
+  imports = [
+    ../../../common/cpu/intel
+    ../acpi_call.nix
+    ../.
+  ];
+}