Update for IVR Linux

This commit is contained in:
Greg Hellings
2023-11-01 14:19:31 -05:00
parent fb244ca7cc
commit 145c6e30fb
7 changed files with 42 additions and 96 deletions
+17 -12
View File
@@ -5,16 +5,21 @@
../../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/"
]);
home = {
packages = with pkgs; [
aacs
direnv
home-manager
];
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/"
]);
username = "gregory.hellings";
homeDirectory = "/home/gregory.hellings";
};
}