nixos-hardware/lenovo/yoga/7/14ARH7/amdgpu/default.nix
2024-06-21 16:38:07 +00:00

24 lines
364 B
Nix

# Including this file will enable the AMD-GPU driver
{ lib, pkgs, ... }:
let
inherit (lib) mkDefault;
in {
imports = [
../shared.nix
];
# AMD RX680
services.xserver.videoDrivers = mkDefault [ "amdgpu" ];
hardware = {
amdgpu.loadInInitrd = true;
graphics.extraPackages = with pkgs; [
vaapiVdpau
libvdpau-va-gl
];
};
}