[shell] Moves shell utilities to shell.nix. Adds direnv to development.nix

This commit is contained in:
2025-02-16 12:28:37 -08:00
parent f09ea34c23
commit 12d734995e
3 changed files with 33 additions and 28 deletions

View File

@@ -1,6 +1,32 @@
# Set up the user's prompt as ZSH with Starship
# Set up the user's prompt as ZSH, Starship and some useful utilities
{ pkgs, ... }:
{
home.packages = with pkgs; [
# System
htop
btop
neofetch
killall
# Files
zip
xz
unzip
p7zip
file
tree
ranger
# Networking
dnsutils
socat
httpie
# Other
jq
];
programs.zsh = {
enable = true;
envExtra = ''