1
0
Fork 0
nixos-config/common/essentials.nix
2018-07-20 14:52:16 +02:00

47 lines
544 B
Nix

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