Files
nixos/modules-all/automatic/programs.nix
T

40 lines
720 B
Nix
Raw Normal View History

2022-04-21 04:49:44 +00:00
{ pkgs, agenix, ... }:
2022-05-04 13:52:38 -05:00
let
myPackages = pypackages: with pypackages; [
2022-09-12 10:05:07 -05:00
pkgs.datadog-api-client
2022-05-04 13:52:38 -05:00
pkgs.xonsh-direnv
2022-09-12 10:05:07 -05:00
datadog
dateutil
ipython
pyyaml
responses
ruamel-yaml
typing-extensions
virtualenv
2022-05-04 13:52:38 -05:00
];
myPython = pkgs.python3.withPackages myPackages;
in {
2022-04-21 04:49:44 +00:00
# Base packages that need to be in all my hosts
environment.systemPackages = with pkgs; [
agenix.defaultPackage."${system}"
2022-06-10 01:09:52 -05:00
bitwarden-cli
2022-04-21 04:49:44 +00:00
diffutils
git
gnupatch
findutils
2022-08-02 01:50:50 -05:00
hms # My own home manager switcher
2022-04-21 04:49:44 +00:00
home-manager
htop
2022-05-04 13:52:38 -05:00
myPython
2022-04-21 04:49:44 +00:00
pwgen
tmux
transcrypt
2022-06-02 09:34:20 -05:00
unzip
2022-04-21 04:49:44 +00:00
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget
yamllint # Used in vim
];
}