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

Merge pull request #149 from danderson/master

lenovo/thinkpad/t495: init from e495.
This commit is contained in:
Jörg Thalheim 2020-03-12 09:12:30 +00:00 committed by GitHub
commit 9f6d639110
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View File

@ -59,6 +59,7 @@ See code for all available configurations.
| Lenovo ThinkPad T470s | `<nixos-hardware/lenovo/thinkpad/t470s>` |
| Lenovo ThinkPad T480s | `<nixos-hardware/lenovo/thinkpad/t480s>` |
| Lenovo ThinkPad T490 | `<nixos-hardware/lenovo/thinkpad/t490>` |
| Lenovo ThinkPad T495 | `<nixos-hardware/lenovo/thinkpad/t495>` |
| Lenovo ThinkPad X140e | `<nixos-hardware/lenovo/thinkpad/x140e>` |
| Lenovo ThinkPad X220 | `<nixos-hardware/lenovo/thinkpad/x220>` |
| Lenovo ThinkPad X230 | `<nixos-hardware/lenovo/thinkpad/x230>` |

View File

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
imports = [
../.
../../../common/cpu/amd
];
# see https://github.com/NixOS/nixpkgs/issues/69289
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.2") pkgs.linuxPackages_latest;
}