14 lines
245 B
Nix
14 lines
245 B
Nix
{
|
|
programs.docker-cli = {
|
|
settings = {
|
|
net = {
|
|
git-fetch-with-cli = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.cargo/config
|
|
assertPathNotExists home-files/.cargo/config.toml
|
|
'';
|
|
}
|