mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-06-11 17:12:43 +02:00
15 lines
328 B
Nix
15 lines
328 B
Nix
_: {
|
|
# use pypi mirror
|
|
# filter packages via upload time for supply-chain security
|
|
xdg.configFile."pip/pip.conf".text = ''
|
|
[global]
|
|
index-url = https://mirrors.bfsu.edu.cn/pypi/web/simple
|
|
|
|
[install]
|
|
uploaded-prior-to = P2D
|
|
'';
|
|
xdg.configFile."uv/uv.toml".text = ''
|
|
exclude-newer = "2 days"
|
|
'';
|
|
}
|