Files
nixconf/modules/sys/hw/gpu/amd.nix
T

12 lines
207 B
Nix

{ pkgs, ... }:
{
# Graphics
hardware.enableRedistributableFirmware = true;
hardware.graphics = {
enable = true;
enable32Bit = true;
extraPackages = with pkgs; [
vkbasalt
];
};
}