1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-18 10:38:33 +02:00

Merge pull request #138 from rummik/add-lenovo-thinkpad-l13

Add Lenovo ThinkPad L13 profile
This commit is contained in:
Jörg Thalheim 2020-02-09 09:09:19 +00:00 committed by GitHub
commit 6f502bc6e6
2 changed files with 11 additions and 0 deletions

View File

@ -43,6 +43,7 @@ See code for all available configurations.
| [Dell XPS 15 9550][] | `<nixos-hardware/dell/xps/15-9550>` |
| [Inverse Path USB armory][] | `<nixos-hardware/inversepath/usbarmory>` |
| 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 T410 | `<nixos-hardware/lenovo/thinkpad/t410>` |
| Lenovo ThinkPad T420 | `<nixos-hardware/lenovo/thinkpad/t420>` |

View 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;
}