1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-06 09:01:04 +01:00
home-manager/tests/modules/programs/cargo/empty-config.nix
Friedrich Altheide 86ff0ef506 cargo: add module
2025-11-27 22:29:55 -06:00

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
'';
}