From 3c474df27929026a06e261dd6ec1c70998163cbd Mon Sep 17 00:00:00 2001 From: Gaute Ravndal Date: Sat, 9 Oct 2021 16:46:22 +0200 Subject: [PATCH] Add basic support for the thinkpad t550 --- README.md | 1 + flake.nix | 1 + lenovo/thinkpad/t550/default.nix | 9 +++++++++ 3 files changed, 11 insertions(+) create mode 100644 lenovo/thinkpad/t550/default.nix diff --git a/README.md b/README.md index e086655..f59ce75 100644 --- a/README.md +++ b/README.md @@ -129,6 +129,7 @@ See code for all available configurations. | [Lenovo ThinkPad T480s](lenovo/thinkpad/t480s) | `` | | [Lenovo ThinkPad T490](lenovo/thinkpad/t490) | `` | | [Lenovo ThinkPad T495](lenovo/thinkpad/t495) | `` | +| [Lenovo ThinkPad T550](lenovo/thinkpad/t550) | `` | | [Lenovo ThinkPad X13 Yoga](lenovo/thinkpad/x13/yoga) | `` | | [Lenovo ThinkPad X140e](lenovo/thinkpad/x140e) | `` | | [Lenovo ThinkPad X200s](lenovo/thinkpad/x200s) | `` | diff --git a/flake.nix b/flake.nix index c6707d0..62731b2 100644 --- a/flake.nix +++ b/flake.nix @@ -63,6 +63,7 @@ lenovo-thinkpad-t480s = import ./lenovo/thinkpad/t480s; lenovo-thinkpad-t490 = import ./lenovo/thinkpad/t490; lenovo-thinkpad-t495 = import ./lenovo/thinkpad/t495; + lenovo-thinkpad-t550 = import ./lenovo/thinkpad/t550; lenovo-thinkpad-x140e = import ./lenovo/thinkpad/x140e; lenovo-thinkpad-x200s = import ./lenovo/thinkpad/x200s; lenovo-thinkpad-x220 = import ./lenovo/thinkpad/x220; diff --git a/lenovo/thinkpad/t550/default.nix b/lenovo/thinkpad/t550/default.nix new file mode 100644 index 0000000..e623371 --- /dev/null +++ b/lenovo/thinkpad/t550/default.nix @@ -0,0 +1,9 @@ +{ config, lib, pkgs, ... }: + +{ + imports = [ + ../../../common/cpu/intel + ../../../common/pc/laptop/acpi_call.nix + ../. + ]; +}