Merge pull request #80 from asymmetric/asymmetric/t450s

lenovo/thinkpad/t450s: init
This commit is contained in:
Jörg Thalheim 2018-10-19 14:21:14 +01:00 committed by GitHub
commit 18a2d7a5e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View File

@ -37,6 +37,7 @@ imports = [
| Lenovo ThinkPad T410 | `<nixos-hardware/lenovo/thinkpad/t410>` |
| Lenovo ThinkPad T430 | `<nixos-hardware/lenovo/thinkpad/t430>` |
| Lenovo ThinkPad T440p | `<nixos-hardware/lenovo/thinkpad/t440p>` |
| Lenovo ThinkPad T450s | `<nixos-hardware/lenovo/thinkpad/t450s>` |
| Lenovo ThinkPad T460s | `<nixos-hardware/lenovo/thinkpad/t460s>` |
| Lenovo ThinkPad X140e | `<nixos-hardware/lenovo/thinkpad/x140e>` |
| Lenovo ThinkPad X220 | `<nixos-hardware/lenovo/thinkpad/x220>` |

View File

@ -35,6 +35,7 @@ in
lenovo-thinkpad-t410 = buildProfile ./lenovo/thinkpad/t410;
lenovo-thinkpad-t440p = buildProfile ./lenovo/thinkpad/t440p;
lenovo-thinkpad-t450s = buildProfile ./lenovo/thinkpad/t450s;
lenovo-thinkpad-t460s = buildProfile ./lenovo/thinkpad/t460s;
lenovo-thinkpad-x140e = buildProfile ./lenovo/thinkpad/x140e;
lenovo-thinkpad-x220 = buildProfile ./lenovo/thinkpad/x220;

View File

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
imports = [
../../../common/cpu/intel
../acpi_call.nix
../.
];
}