Files
nixos/home/hosts/ivr/default.nix
T
2023-08-29 12:29:24 -05:00

21 lines
382 B
Nix

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