nix/modules/home-manager/mold.nix
2026-08-26 03:57:23 +02:00

8 lines
221 B
Nix

{ pkgs, ... }:
{
home.file.".cargo/config.toml".text = ''
[target.'cfg(target_os = "linux")']
linker = "${pkgs.clang}/bin/clang"
rustflags = ["-C", "link-arg=-fuse-ld=${pkgs.mold-wrapped}/bin/mold"]
'';
}