mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
15 lines
240 B
Nix
15 lines
240 B
Nix
{
|
|
programs.cargo = {
|
|
settings = {
|
|
net = {
|
|
git-fetch-with-cli = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.cargo/config
|
|
assertPathNotExists home-files/.cargo/config.toml
|
|
'';
|
|
}
|