First Commit

This commit is contained in:
2026-01-05 04:04:36 +01:00
commit c7a17f7772
83 changed files with 3574 additions and 0 deletions

35
modules/ld.nix Normal file
View File

@@ -0,0 +1,35 @@
{ pkgs, ... }:
{
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
stdenv.cc.cc
glibc
xorg.libX11
xorg.libXcursor
xorg.libXrandr
xorg.libXinerama
xorg.libXi
wayland
libGL
libdrm
alsa-lib
pulseaudio
glib
nspr.out
nss.out
dbus.lib
at-spi2-atk
cups.lib
cairo.out
gtk3.out
pango.out
libxcomposite.out
libxdamage.out
libxext.out
libxfixes.out
libgbm.out
expat.out
libxcb.out
libxkbcommon.out
];
}