feat(nixos): enable nix-ld and add empty libraries list

This commit is contained in:
Mohammad Rafiq 2025-06-19 05:38:19 +08:00
parent 335cf06e59
commit 5ef754ecc4
No known key found for this signature in database

View file

@ -14,5 +14,9 @@ in
programs = {
zsh.enable = true;
zsh.enableCompletion = true;
nix-ld = {
enable = true;
libraries = with pkgs; [ ];
};
};
}