1
0
Fork 0
nixos-config/common/essentials.nix
2018-05-31 14:45:23 +02:00

45 lines
513 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
(import <unstable> {}).home-manager
socat
nmap
tcpdump
git-crypt
tmux
tig
exa
fzf
ag
pythonPackages.qrcode
ranger
pass
sshuttle
mtr
];
}