mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
10 lines
215 B
Nix
10 lines
215 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
deploy.profile.hardware.amdgpu = true;
|
|
|
|
boot.initrd.availableKernelModules = [ "amdgpu" ];
|
|
hardware.opengl.extraPackages = with pkgs; [ libvdpau-va-gl vaapiVdpau ];
|
|
}
|