feat: configure uv to use pip.dogar.dev for pypi cache

This commit is contained in:
2025-11-17 10:31:19 +05:00
parent afdcce8b76
commit 45c7c99911
3 changed files with 11 additions and 1 deletions

View File

@@ -1,6 +1,5 @@
{pkgs, ...}: { {pkgs, ...}: {
home.packages = with pkgs; [ home.packages = with pkgs; [
uv
btop btop
zoxide zoxide
unzip unzip

View File

@@ -0,0 +1,10 @@
{
...
}: {
programs.uv = {
enable = true;
settings = {
pip.index-url = "https://pip.dogar.dev";
};
};
}

View File

@@ -22,6 +22,7 @@
"ssh" "ssh"
"starship" "starship"
"tmux" "tmux"
"uv"
"zsh" "zsh"
]) ])
]; ];