1
mirror of https://github.com/wlcx/home.git synced 2025-10-28 12:33:44 +00:00
home/home/packages.nix
Sam Willcocks 500bcd20eb Add flake.nix
Add a new flake.nix for this repo, having extracted it from
nixos-configs. Add packages.nix copied from nixos-configs, as I
accidentally removed it while filtering to create this repo.
2022-06-14 02:17:01 +01:00

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);
}