From ed0d3cc198557b9260295aa8a384dd5080706aee Mon Sep 17 00:00:00 2001 From: *Kim Zick Date: Wed, 16 Oct 2019 14:25:20 -0400 Subject: [PATCH] Initial p53 hardware configuration (#125) --- README.md | 1 + lenovo/thinkpad/p53/default.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 lenovo/thinkpad/p53/default.nix 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][] | `` | | [Inverse Path USB armory][] | `` | | Lenovo IdeaPad Z510 | `` | +| Lenovo ThinkPad P53 | `` | | Lenovo ThinkPad T410 | `` | | Lenovo ThinkPad T430 | `` | | 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 + ../. + ]; +}