mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-10 04:59:40 +01:00
24 lines
411 B
Nix
24 lines
411 B
Nix
# Including this file will enable the AMD-GPU driver
|
|
|
|
{ lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib) mkDefault;
|
|
|
|
in {
|
|
imports = [
|
|
../shared.nix
|
|
../../../../../common/gpu/24.05-compat.nix
|
|
];
|
|
|
|
# AMD RX680
|
|
services.xserver.videoDrivers = mkDefault [ "amdgpu" ];
|
|
|
|
hardware = {
|
|
amdgpu.loadInInitrd = true;
|
|
graphics.extraPackages = with pkgs; [
|
|
vaapiVdpau
|
|
libvdpau-va-gl
|
|
];
|
|
};
|
|
}
|