t14s: add AMD Gen1 model

t14s: fix minimum required kernel version
This commit is contained in:
dadada
2020-10-25 23:16:27 +01:00
parent 81b5488961
commit 04c79afe1c
5 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
imports = [
../.
../../../../common/cpu/amd
];
# For support of newer AMD GPUs, backlight and internal microphone
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.8") pkgs.linuxPackages_latest;
}

View File

@@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
imports = [
../.
];
}

View File

@@ -3,7 +3,6 @@
{
imports = [
../.
../../../common/cpu/amd
../../../common/pc/laptop/acpi_call.nix
];