mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-15 23:49:41 +01:00
Merge pull request #138 from rummik/add-lenovo-thinkpad-l13
Add Lenovo ThinkPad L13 profile
This commit is contained in:
commit
6f502bc6e6
2 changed files with 11 additions and 0 deletions
|
@ -43,6 +43,7 @@ See code for all available configurations.
|
||||||
| [Dell XPS 15 9550][] | `<nixos-hardware/dell/xps/15-9550>` |
|
| [Dell XPS 15 9550][] | `<nixos-hardware/dell/xps/15-9550>` |
|
||||||
| [Inverse Path USB armory][] | `<nixos-hardware/inversepath/usbarmory>` |
|
| [Inverse Path USB armory][] | `<nixos-hardware/inversepath/usbarmory>` |
|
||||||
| Lenovo IdeaPad Z510 | `<nixos-hardware/lenovo/ideapad/z510>` |
|
| Lenovo IdeaPad Z510 | `<nixos-hardware/lenovo/ideapad/z510>` |
|
||||||
|
| Lenovo ThinkPad L13 | `<nixos-hardware/lenovo/thinkpad/l13>` |
|
||||||
| Lenovo ThinkPad P53 | `<nixos-hardware/lenovo/thinkpad/p53>` |
|
| Lenovo ThinkPad P53 | `<nixos-hardware/lenovo/thinkpad/p53>` |
|
||||||
| Lenovo ThinkPad T410 | `<nixos-hardware/lenovo/thinkpad/t410>` |
|
| Lenovo ThinkPad T410 | `<nixos-hardware/lenovo/thinkpad/t410>` |
|
||||||
| Lenovo ThinkPad T420 | `<nixos-hardware/lenovo/thinkpad/t420>` |
|
| Lenovo ThinkPad T420 | `<nixos-hardware/lenovo/thinkpad/t420>` |
|
||||||
|
|
10
lenovo/thinkpad/l13/default.nix
Normal file
10
lenovo/thinkpad/l13/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{ nixos, lib, pkgs, config, stdenv, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
../../../common/cpu/intel
|
||||||
|
../../../common/pc/laptop/acpi_call.nix
|
||||||
|
../.
|
||||||
|
];
|
||||||
|
|
||||||
|
services.throttled.enable = lib.mkDefault true;
|
||||||
|
}
|
Loading…
Reference in a new issue