System : Enable LD.
This commit is contained in:
parent
4f4e21a26d
commit
7435ba9a69
|
@ -106,6 +106,7 @@
|
||||||
./module/common/Font.nix
|
./module/common/Font.nix
|
||||||
./module/common/Git.nix
|
./module/common/Git.nix
|
||||||
./module/common/Kernel.nix
|
./module/common/Kernel.nix
|
||||||
|
./module/common/Ld.nix
|
||||||
./module/common/Locale.nix
|
./module/common/Locale.nix
|
||||||
./module/common/Network.nix
|
./module/common/Network.nix
|
||||||
./module/common/Nix.nix
|
./module/common/Nix.nix
|
||||||
|
|
9
.config/linux/system/module/common/Ld.nix
Normal file
9
.config/linux/system/module/common/Ld.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Reference in a new issue