1
0
Fork 0
nixos-config/common/essentials.nix
Malte Brandy 5b23dc2ad1 Add borg
2018-06-09 03:52:04 +02:00

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