17 lines
232 B
Nix
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
|
|
];
|
|
}
|