Files
nixos/modules/graphics/mesa-amd.nix
T
2026-06-10 19:59:29 +02:00

17 lines
232 B
Nix

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