mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
15 lines
226 B
Nix
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}"
|
|
'';
|
|
}
|