From dbbd0d409341aba4e8eef761251399ab1a91f226 Mon Sep 17 00:00:00 2001 From: James Earl Douglas Date: Mon, 19 Apr 2021 06:31:26 -0700 Subject: [PATCH] Add a profile for the Thinkpad T460 --- README.md | 1 + flake.nix | 1 + lenovo/thinkpad/t460/default.nix | 9 +++++++++ 3 files changed, 11 insertions(+) create mode 100644 lenovo/thinkpad/t460/default.nix diff --git a/README.md b/README.md index 8db749e..9f4166e 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,7 @@ See code for all available configurations. | Lenovo ThinkPad T440s | `` | | Lenovo ThinkPad T440p | `` | | Lenovo ThinkPad T450s | `` | +| Lenovo ThinkPad T460 | `` | | Lenovo ThinkPad T460s | `` | | Lenovo ThinkPad T470s | `` | | Lenovo ThinkPad T480s | `` | diff --git a/flake.nix b/flake.nix index 0ea3a68..692f7e7 100644 --- a/flake.nix +++ b/flake.nix @@ -48,6 +48,7 @@ lenovo-thinkpad-t440s = import ./lenovo/thinkpad/t440s; lenovo-thinkpad-t440p = import ./lenovo/thinkpad/t440p; lenovo-thinkpad-t450s = import ./lenovo/thinkpad/t450s; + lenovo-thinkpad-t460 = import ./lenovo/thinkpad/t460; lenovo-thinkpad-t460s = import ./lenovo/thinkpad/t460s; lenovo-thinkpad-t470s = import ./lenovo/thinkpad/t470s; lenovo-thinkpad-t480s = import ./lenovo/thinkpad/t480s; diff --git a/lenovo/thinkpad/t460/default.nix b/lenovo/thinkpad/t460/default.nix new file mode 100644 index 0000000..e623371 --- /dev/null +++ b/lenovo/thinkpad/t460/default.nix @@ -0,0 +1,9 @@ +{ config, lib, pkgs, ... }: + +{ + imports = [ + ../../../common/cpu/intel + ../../../common/pc/laptop/acpi_call.nix + ../. + ]; +}