2022-12-31 05:52:38 -05:00
|
|
|
{ lib, pkgs, ... }:
|
2022-02-01 08:16:50 -05:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../.
|
|
|
|
../../../../common/cpu/amd
|
|
|
|
../../../../common/gpu/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;
|
|
|
|
}
|