1
0
Fork 0
nixos-config/common/essentials.nix
Malte Brandy 36a8fb6164
Add pwgen
2018-06-04 21:38:29 +02:00

45 lines
515 B
Nix

{
core = pkgs: with pkgs; [
git
gnumake
python3
mkpasswd
file
wget
curl
(pkgs.neovim.override {
vimAlias = true;
withPython3 = true;
})
gnupg
mutt
];
extra = pkgs: with pkgs; [
git-crypt
htop
tree
rxvt_unicode.terminfo
st
pwgen
(import <unstable> {}).home-manager
socat
nmap
tcpdump
git-crypt
tmux
tig
exa
fzf
ag
pythonPackages.qrcode
ranger
pass
sshuttle
];
}