Merge pull request #250 from earldouglas/thinkpad/x200s

Add a profile for the Thinkpad X200s
This commit is contained in:
Jörg Thalheim 2021-04-21 04:33:29 +01:00 committed by GitHub
commit 241d8300b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View File

@ -121,6 +121,7 @@ See code for all available configurations.
| Lenovo ThinkPad T495 | `<nixos-hardware/lenovo/thinkpad/t495>` |
| Lenovo ThinkPad X113 Yoga | `<nixos-hardware/lenovo/thinkpad/x13-yoga>` |
| Lenovo ThinkPad X140e | `<nixos-hardware/lenovo/thinkpad/x140e>` |
| Lenovo ThinkPad X200s | `<nixos-hardware/lenovo/thinkpad/x200s>` |
| Lenovo ThinkPad X220 | `<nixos-hardware/lenovo/thinkpad/x220>` |
| Lenovo ThinkPad X230 | `<nixos-hardware/lenovo/thinkpad/x230>` |
| Lenovo ThinkPad X250 | `<nixos-hardware/lenovo/thinkpad/x250>` |

View File

@ -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;

View File

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
imports = [
../.
../../../common/pc/laptop/hdd
../tp-smapi.nix
];
}