oxidizing
This commit is contained in:
parent
a46356a178
commit
a9eadc52f3
35 changed files with 726 additions and 1223 deletions
38
configuration/modules/ld.nix
Normal file
38
configuration/modules/ld.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue