2.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}"
'';
}