1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-07 17:41:03 +01:00
home-manager/tests/modules/programs/uv/no-settings.nix
2025-04-20 14:32:29 -07:00

16 lines
235 B
Nix

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