oxidizing

This commit is contained in:
maxstrb 2026-03-14 21:45:57 +01:00
parent a46356a178
commit a9eadc52f3
35 changed files with 726 additions and 1223 deletions

View file

@ -0,0 +1,38 @@
{pkgs, ...}: {
programs.nix-ld = {
enable = true;
libraries = with pkgs; [
# Graphics
libGL
vulkan-loader
libdrm
libgbm
# Audio
alsa-lib
pulseaudio
pipewire
# Display / input
xorg.libX11
xorg.libXcursor
xorg.libXrandr
xorg.libXi
xorg.libXext
xorg.libXfixes
wayland
# Common runtime deps most Unity/Godot/etc games need
libxcrypt
glibc
stdenv.cc.cc.lib # libstdc++
zlib
openssl
curl
# Controllers
udev
libevdev
];
};
}