1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-13 04:21:08 +01:00
home-manager/tests/modules/programs/cargo/empty-config.nix
trash-panda-v91-beta af324afa72 cargo: fix typo in tests
testing docker-cli instead of cargo in empty-config.nix
2025-12-03 10:43:50 -06:00

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