Files
nixos/home/hosts/ivr/default.nix
T

21 lines
382 B
Nix
Raw Normal View History

2023-08-21 10:20:24 -05:00
{ pkgs, lib, ...}:
{
2023-08-29 12:29:24 -05:00
imports = [
../../vscodium.nix
];
2023-08-21 10:34:42 -05:00
home.packages = with pkgs; [
2023-08-21 11:21:04 -05:00
aacs
2023-08-21 10:34:42 -05:00
brew
];
2023-08-21 10:20:24 -05:00
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/"
]);
}