Files
nixos/modules-all/automatic/programs.nix
T
2022-10-15 00:30:53 -05:00

31 lines
507 B
Nix

{ pkgs, agenix, ... }:
let
myPackages = pypackages: with pypackages; [
pkgs.my-py-addons.xonsh-direnv
virtualenv
];
myPython = pkgs.python3.withPackages myPackages;
in {
# Base packages that need to be in all my hosts
environment.systemPackages = with pkgs; [
agenix.defaultPackage."${system}"
android-file-transfer
bitwarden-cli
diffutils
git
gnupatch
findutils
hms # My own home manager switcher
home-manager
htop
myPython
nano
pwgen
transcrypt
unzip
wget
];
}