System : Enable LD.

This commit is contained in:
Dmitry Voronin 2024-02-27 22:55:48 +03:00
parent 4f4e21a26d
commit 7435ba9a69
2 changed files with 10 additions and 0 deletions

View file

@ -106,6 +106,7 @@
./module/common/Font.nix
./module/common/Git.nix
./module/common/Kernel.nix
./module/common/Ld.nix
./module/common/Locale.nix
./module/common/Network.nix
./module/common/Nix.nix

View file

@ -0,0 +1,9 @@
{ pkgs, ... }: {
programs.nix-ld = {
enable = true;
package = pkgs.nix-ld;
libraries = with pkgs; [
# Add any missing dynamic libraries for unpackaged programs here, NOT in environment.systemPackages
];
};
}