Initial import

This commit is contained in:
2026-06-10 18:36:32 +02:00
commit 41ff233f31
11 changed files with 321 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
hardware.graphics = {
enable = true;
enable32Bit = true;
};
services.xserver.videoDrivers = [ "amdgpu" ];
environment.systemPackages = with pkgs; [
mesa-demos
vulkan-tools
];
}