Configure uv on IVR

This commit is contained in:
Greg Hellings
2025-10-16 00:22:24 -05:00
parent 59756f1748
commit 1797eed267
+14 -10
View File
@@ -48,16 +48,20 @@ in
skaffold
x
];
file.".pip/pip.conf".text = (
lib.strings.concatStringsSep "\n" [
"[global]"
"retries = 1"
"index-url = https://pypi.python.org/simple"
"extra-index-url ="
" https://pypi.ivrtechnology.com/simple/"
" https://pypidev.ivrtechnology.com/simple/"
]
);
file = {
".pip/pip.conf".text = ''
[global]
retries = 1
index-url = https://pypi.python.org/simple
extra-index-url =
https://pypidev.ivrtechnology.com/simple/
'';
".config/uv/uv.toml".text = ''
[[index]]
url = "https://pypidev.ivrtechnology.com"
name = "pypidev"
'';
};
username = username;
homeDirectory = "/Users/${username}";
};