Files
system-config/home-manager/features/development/development.nix
2025-03-12 13:57:35 -07:00

44 lines
482 B
Nix

{ pkgs, ... }:
{
imports = [
# Dev apps
../git.nix
../shell.nix
../neovim
../ssh.nix
# Base languages that should always be available
./nix.nix
./lua.nix
];
home.packages = with pkgs; [
# System
htop
btop
neofetch
killall
# Files
zip
xz
unzip
p7zip
file
tree
ranger
# Networking
dnsutils
inetutils
socat
httpie
# Other
jq
# Dev helpers
direnv
];
}