1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00
home-manager/tests/modules/programs/uv/no-settings.nix
2025-10-26 15:43:53 -05:00

15 lines
226 B
Nix

{
programs.uv = {
enable = true;
};
test.stubs.uv = { };
nmt.script =
let
expectedConfigPath = "home-files/.config/uv/uv.toml";
in
''
assertPathNotExists "${expectedConfigPath}"
'';
}