1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 13:27:22 +02:00
nixos-hardware/lenovo/yoga/7/14ARH7/amdgpu/default.nix
2024-06-21 23:50:11 +02:00

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
];
};
}