diff --git a/README.md b/README.md index 9f4166e..422d711 100644 --- a/README.md +++ b/README.md @@ -121,6 +121,7 @@ See code for all available configurations. | Lenovo ThinkPad T495 | `` | | Lenovo ThinkPad X113 Yoga | `` | | Lenovo ThinkPad X140e | `` | +| Lenovo ThinkPad X200s | `` | | Lenovo ThinkPad X220 | `` | | Lenovo ThinkPad X230 | `` | | Lenovo ThinkPad X250 | `` | diff --git a/flake.nix b/flake.nix index 692f7e7..7613339 100644 --- a/flake.nix +++ b/flake.nix @@ -55,6 +55,7 @@ lenovo-thinkpad-t490 = import ./lenovo/thinkpad/t490; lenovo-thinkpad-t495 = import ./lenovo/thinkpad/t495; lenovo-thinkpad-x140e = import ./lenovo/thinkpad/x140e; + lenovo-thinkpad-x200s = import ./lenovo/thinkpad/x200s; lenovo-thinkpad-x220 = import ./lenovo/thinkpad/x220; lenovo-thinkpad-x230 = import ./lenovo/thinkpad/x230; lenovo-thinkpad-x250 = import ./lenovo/thinkpad/x250; diff --git a/lenovo/thinkpad/x200s/default.nix b/lenovo/thinkpad/x200s/default.nix new file mode 100644 index 0000000..5a637d6 --- /dev/null +++ b/lenovo/thinkpad/x200s/default.nix @@ -0,0 +1,9 @@ +{ config, lib, pkgs, ... }: + +{ + imports = [ + ../. + ../../../common/pc/laptop/hdd + ../tp-smapi.nix + ]; +}