feat: add nix-ld

This commit is contained in:
Thiago Sposito 2025-10-04 10:45:50 -03:00
parent dfa7a012a2
commit 294ab93887
Signed by: thiago
GPG key ID: 3065EA73A976D430
3 changed files with 25 additions and 1 deletions

View file

@ -28,6 +28,7 @@
keymapp
libnitrokey
libusb1
nix-ld
opensc
pciutils
pcsc-safenet
@ -58,13 +59,20 @@
nixpkgs.config.allowUnfree = true;
programs = {
zsh.enable = true;
gnupg = {
agent = {
enable = true;
pinentryPackage = pkgs.pinentry-tty;
};
};
nix-ld = {
enable = true;
libraries = with pkgs; [
glibc
zlib
];
};
zsh.enable = true;
};
services = {
pcscd.enable = true;