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

31 lines
507 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-10-15 00:19:38 -05:00
pkgs.my-py-addons.xonsh-direnv
2022-09-12 10:05:07 -05:00
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}"
android-file-transfer
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-09-16 11:04:22 -05:00
nano
2022-04-21 04:49:44 +00:00
pwgen
transcrypt
2022-06-02 09:34:20 -05:00
unzip
2022-04-21 04:49:44 +00:00
wget
];
}