8 lines
221 B
Nix
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"]
|
|
'';
|
|
}
|