dotfiles/nixcfgs/modules/nixos/core/nix-ld.nix
2025-12-05 17:43:05 +00:00

8 lines
118 B
Nix

{pkgs, ...}: {
programs.nix-ld = {
enable = true;
libraries = with pkgs; [
stdenv.cc.cc
];
};
}