From f2049fcd902463e0446f001457b959a584aa59a0 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 23 Oct 2024 18:28:05 -0700 Subject: pc: add nix-ld and appimage runners --- modules/pc/software/runners/nix-ld.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 modules/pc/software/runners/nix-ld.nix (limited to 'modules/pc/software/runners/nix-ld.nix') diff --git a/modules/pc/software/runners/nix-ld.nix b/modules/pc/software/runners/nix-ld.nix new file mode 100644 index 0000000..bd60a25 --- /dev/null +++ b/modules/pc/software/runners/nix-ld.nix @@ -0,0 +1,28 @@ +{ pkgs, ... }: +{ + programs.nix-ld = { + enable = true; + + libraries = with pkgs; [ + stdenv.cc.cc + openssl + curl + glib + util-linux + glibc + icu + libunwind + libuuid + zlib + libsecret + # graphical + freetype + libglvnd + libnotify + SDL2 + vulkan-loader + gdk-pixbuf + xorg.libX11 + ]; + }; +} -- cgit v1.2.3