mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
12 lines
289 B
Nix
12 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;
|
|
}
|