Files
nixos/home/hosts/ivr/default.nix
T
2023-08-21 10:34:42 -05:00

16 lines
336 B
Nix

{ pkgs, lib, ...}:
{
home.packages = with pkgs; [
brew
];
home.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/"
]);
}