mirror of https://github.com/wlcx/home.git
25 lines
396 B
Nix
25 lines
396 B
Nix
{ pkgs }:
|
|
with pkgs; rec {
|
|
# The stuff you want installed everywhere. The necessities.
|
|
base = [
|
|
bat # cat replacement, aliased to cat in home-manager
|
|
file
|
|
git
|
|
htop
|
|
lsof
|
|
mosh
|
|
tmux
|
|
unzip
|
|
vim
|
|
wget
|
|
];
|
|
|
|
# Networking shit
|
|
net = [ iperf3 nmap socat tcpdump ];
|
|
|
|
# development tools
|
|
dev = [ jq nixfmt gh glab hexyl ];
|
|
|
|
all = (base ++ net ++ dev);
|
|
}
|