Files
nixos/modules/graphics/mesa-amd.nix
T
2026-06-10 18:36:32 +02:00

16 lines
223 B
Nix

{ pkgs, ... }:
{
hardware.graphics = {
enable = true;
enable32Bit = true;
};
services.xserver.videoDrivers = [ "amdgpu" ];
environment.systemPackages = with pkgs; [
mesa-demos
vulkan-tools
];
}