From 3009bcb058c036bf8312079da701146663dcf971 Mon Sep 17 00:00:00 2001 From: Joe <48526917+jblsp@users.noreply.github.com> Date: Tue, 28 Jan 2025 19:07:31 +0000 Subject: [PATCH] lenovo/thinkpad/t490s: init --- README.md | 1 + flake.nix | 1 + lenovo/thinkpad/t490s/default.nix | 9 +++++++++ 3 files changed, 11 insertions(+) create mode 100644 lenovo/thinkpad/t490s/default.nix diff --git a/README.md b/README.md index 0e503cf2..b02b7008 100644 --- a/README.md +++ b/README.md @@ -265,6 +265,7 @@ See code for all available configurations. | [Lenovo ThinkPad T480](lenovo/thinkpad/t480) | `` | | [Lenovo ThinkPad T480s](lenovo/thinkpad/t480s) | `` | | [Lenovo ThinkPad T490](lenovo/thinkpad/t490) | `` | +| [Lenovo ThinkPad T490s](lenovo/thinkpad/t490s) | `` | | [Lenovo ThinkPad T495](lenovo/thinkpad/t495) | `` | | [Lenovo ThinkPad T520](lenovo/thinkpad/t520) | `` | | [Lenovo ThinkPad T550](lenovo/thinkpad/t550) | `` | diff --git a/flake.nix b/flake.nix index fb165c0e..14e32a74 100644 --- a/flake.nix +++ b/flake.nix @@ -206,6 +206,7 @@ lenovo-thinkpad-t480 = import ./lenovo/thinkpad/t480; lenovo-thinkpad-t480s = import ./lenovo/thinkpad/t480s; lenovo-thinkpad-t490 = import ./lenovo/thinkpad/t490; + lenovo-thinkpad-t490s = import ./lenovo/thinkpad/t490s; lenovo-thinkpad-t495 = import ./lenovo/thinkpad/t495; lenovo-thinkpad-t520 = import ./lenovo/thinkpad/t520; lenovo-thinkpad-w520 = import ./lenovo/thinkpad/w520; diff --git a/lenovo/thinkpad/t490s/default.nix b/lenovo/thinkpad/t490s/default.nix new file mode 100644 index 00000000..35a0055b --- /dev/null +++ b/lenovo/thinkpad/t490s/default.nix @@ -0,0 +1,9 @@ +{lib, ...}: { + imports = [ + ../../../common/cpu/intel + ../../../common/pc/ssd + ../. + ]; + + services.throttled.enable = lib.mkDefault true; +}