From 9c5f8eff461506318f8d83412145dc5660d158d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nina=20Chloe=20Kassandra=20Rei=C3=9F?= Date: Sat, 7 Mar 2026 07:09:38 +0100 Subject: [PATCH] enable nix-ld for generic linux --- configuration.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/configuration.nix b/configuration.nix index a958436..b81aada 100755 --- a/configuration.nix +++ b/configuration.nix @@ -75,6 +75,21 @@ in podman-compose ]; + programs.nix-ld = { + enable = true; + libraries = with pkgs; [ + stdenv.cc.cc + zlib + openssl + curl + glib + gtk3 + libGL + xorg.libX11 + appimage-run + ]; + }; + # Enable the OpenSSH daemon. services.openssh.enable = true; nix.settings.experimental-features = [ "nix-command" "flakes" ];