Skip to content

Commit 241d830

Browse files
authored
Merge pull request #250 from earldouglas/thinkpad/x200s
Add a profile for the Thinkpad X200s
2 parents 590bdca + 00b40b7 commit 241d830

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ See code for all available configurations.
121121
| Lenovo ThinkPad T495 | `<nixos-hardware/lenovo/thinkpad/t495>` |
122122
| Lenovo ThinkPad X113 Yoga | `<nixos-hardware/lenovo/thinkpad/x13-yoga>` |
123123
| Lenovo ThinkPad X140e | `<nixos-hardware/lenovo/thinkpad/x140e>` |
124+
| Lenovo ThinkPad X200s | `<nixos-hardware/lenovo/thinkpad/x200s>` |
124125
| Lenovo ThinkPad X220 | `<nixos-hardware/lenovo/thinkpad/x220>` |
125126
| Lenovo ThinkPad X230 | `<nixos-hardware/lenovo/thinkpad/x230>` |
126127
| Lenovo ThinkPad X250 | `<nixos-hardware/lenovo/thinkpad/x250>` |

flake.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
lenovo-thinkpad-t490 = import ./lenovo/thinkpad/t490;
5656
lenovo-thinkpad-t495 = import ./lenovo/thinkpad/t495;
5757
lenovo-thinkpad-x140e = import ./lenovo/thinkpad/x140e;
58+
lenovo-thinkpad-x200s = import ./lenovo/thinkpad/x200s;
5859
lenovo-thinkpad-x220 = import ./lenovo/thinkpad/x220;
5960
lenovo-thinkpad-x230 = import ./lenovo/thinkpad/x230;
6061
lenovo-thinkpad-x250 = import ./lenovo/thinkpad/x250;

lenovo/thinkpad/x200s/default.nix

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{ config, lib, pkgs, ... }:
2+
3+
{
4+
imports = [
5+
../.
6+
../../../common/pc/laptop/hdd
7+
../tp-smapi.nix
8+
];
9+
}

0 commit comments

Comments
 (0)