1
0
Fork 0
nixos-config/common/essentials.nix
2019-02-13 02:32:13 +01:00

54 lines
582 B
Nix

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