mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
13 lines
289 B
Nix
13 lines
289 B
Nix
|
{ lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
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;
|
||
|
}
|