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

42 lines
779 B
Nix
Raw Normal View History

2023-11-03 10:06:32 -05:00
{ pkgs, lib, inputs, ...}:
let
py = pkgs.nix23_05.python311.withPackages ( p: with p; [
django
djangorestframework
django-rapyd-modernauth
environs
mysqlclient
2024-01-22 19:50:43 -06:00
pyyaml
ruamel-yaml
tox
]);
in {
2023-08-29 12:29:24 -05:00
imports = [
../../vscodium.nix
];
greg.pypackage = py;
2023-11-01 14:14:50 -05:00
home = {
packages = with pkgs; [
aacs
2024-04-25 23:04:34 -05:00
ansible
2023-11-07 10:41:01 -06:00
bitwarden-cli
2023-11-01 14:14:50 -05:00
direnv
home-manager
2023-11-15 14:05:11 -06:00
insomnia
pipenv-ivr
2024-07-17 11:15:09 -05:00
poetry
2023-11-01 14:14:50 -05:00
];
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";
2024-02-19 12:13:46 -06:00
homeDirectory = lib.mkForce "/home/gregory.hellings";
2023-11-01 14:14:50 -05:00
};
2023-08-21 10:20:24 -05:00
}