2020-10-25 18:16:27 -04:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../.
|
|
|
|
../../../../common/cpu/amd
|
2021-06-08 05:09:01 -04:00
|
|
|
../../../../common/gpu/amd
|
2020-10-25 18:16:27 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
# For support of newer AMD GPUs, backlight and internal microphone
|
|
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.8") pkgs.linuxPackages_latest;
|
|
|
|
}
|