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

25 lines
327 B
Nix
Raw Normal View History

2022-10-17 10:46:50 -05:00
{ pkgs, ... }:
2022-04-21 04:49:44 +00:00
2022-11-01 08:35:06 -05:00
{
2022-04-21 04:49:44 +00:00
# Base packages that need to be in all my hosts
environment.systemPackages = with pkgs; [
2022-10-17 10:46:50 -05:00
agenix
android-file-transfer
2022-06-10 01:09:52 -05:00
bitwarden-cli
2022-04-21 04:49:44 +00:00
diffutils
git
gnupatch
2022-11-01 08:35:06 -05:00
gregpy
2022-04-21 04:49:44 +00:00
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
2023-02-19 21:38:12 -06:00
killall
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
];
}