Files
nixos-vorlagen/modules/graphics/mesa-amd.nix
T
2026-06-16 20:55:00 +02:00

20 lines
304 B
Nix

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