enable nix-ld

This commit is contained in:
ama 2024-07-25 14:57:54 +08:00
parent e09a1050d5
commit d13605eaa8

View file

@ -90,6 +90,7 @@
cryptsetup cryptsetup
home-manager home-manager
wpa_supplicant wpa_supplicant
nix-ld
]; ];
# I use zsh btw # 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 # It is ok to leave this unchanged for compatibility purposes
system.stateVersion = "22.11"; system.stateVersion = "22.11";