Skip to content

Instantly share code, notes, and snippets.

@paulfrische
Created November 9, 2024 12:18
Show Gist options
  • Select an option

  • Save paulfrische/06764a05aab5721195a19a4af912683f to your computer and use it in GitHub Desktop.

Select an option

Save paulfrische/06764a05aab5721195a19a4af912683f to your computer and use it in GitHub Desktop.
{
pkgs,
lib,
...
}: {
packages = with pkgs; [
pkg-config
alsa-lib
udev
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libxcb
xorg.libXi
libxkbcommon
];
env.LD_LIBRARY_PATH = with pkgs;
lib.makeLibraryPath [
alsa-lib
udev
vulkan-loader
xorg.libX11
xorg.libXcursor
xorg.libxcb
xorg.libXi
libxkbcommon
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment