summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author*Kim Zick <k@9k1.us>2019-10-16 14:25:20 -0400
committerJörg Thalheim <Mic92@users.noreply.github.com>2019-10-16 19:25:20 +0100
commited0d3cc198557b9260295aa8a384dd5080706aee (patch)
tree79fe175f0dec38ef1011145af036d85d63baf66e
parent77f581a4b516b9733200a58c09553af32a909fe5 (diff)
Initial p53 hardware configuration (#125)
-rw-r--r--README.md1
-rw-r--r--lenovo/thinkpad/p53/default.nix9
2 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index e16e6e4..4cfbf53 100644
--- a/README.md
+++ b/README.md
@@ -40,6 +40,7 @@ See code for all available configurations.
| [Dell XPS 15 9550][] | `<nixos-hardware/dell/xps/15-9550>` |
| [Inverse Path USB armory][] | `<nixos-hardware/inversepath/usbarmory>` |
| 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 T430 | `<nixos-hardware/lenovo/thinkpad/t430>` |
| Lenovo ThinkPad T440s | `<nixos-hardware/lenovo/thinkpad/t440s>` |
diff --git a/lenovo/thinkpad/p53/default.nix b/lenovo/thinkpad/p53/default.nix
new file mode 100644
index 0000000..6eadb6e
--- /dev/null
+++ b/lenovo/thinkpad/p53/default.nix
@@ -0,0 +1,9 @@
+{ nixos, pkgs, config, stdenv, ... }:
+{
+ imports = [
+ ../../../common/cpu/intel
+ ../../../common/pc/laptop/acpi_call.nix
+ ../../../common/pc/laptop/cpu-throttling-bug.nix
+ ../.
+ ];
+}