From d13605eaa80314dc9e332854dbf9e7a86ba1c011 Mon Sep 17 00:00:00 2001 From: ama Date: Thu, 25 Jul 2024 14:57:54 +0800 Subject: [PATCH] enable nix-ld --- profiles/work/configuration.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/profiles/work/configuration.nix b/profiles/work/configuration.nix index 243c470..54b51f1 100644 --- a/profiles/work/configuration.nix +++ b/profiles/work/configuration.nix @@ -90,6 +90,7 @@ cryptsetup home-manager wpa_supplicant + nix-ld ]; # I use zsh btw @@ -107,6 +108,25 @@ ]; }; + # nix-ld + programs.nix-ld.enable = true; + programs.nix-ld.libraries = with pkgs; [ + zlib + zstd + stdenv.cc.cc + curl + openssl + attr + libssh + bzip2 + libxml2 + acl + libsodium + util-linux + xz + systemd + ]; + # It is ok to leave this unchanged for compatibility purposes system.stateVersion = "22.11";