nixos-hardware/lenovo/yoga/7/14ARH7/amdgpu/default.nix

25 lines
411 B
Nix
Raw Normal View History

# Including this file will enable the AMD-GPU driver
{ lib, pkgs, ... }:
let
inherit (lib) mkDefault;
in {
imports = [
../shared.nix
2024-06-21 17:26:44 -04:00
../../../../../common/gpu/24.05-compat.nix
];
# AMD RX680
services.xserver.videoDrivers = mkDefault [ "amdgpu" ];
hardware = {
amdgpu.loadInInitrd = true;
2024-06-21 09:44:42 -04:00
graphics.extraPackages = with pkgs; [
vaapiVdpau
libvdpau-va-gl
];
};
}