nix/home-manager/shared/programs/dev.nix
2025-06-01 20:39:18 -05:00

25 lines
232 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
#sys
p7zip
gnumake
jq
tree
jujutsu
emacs-nox
#devops
k9s
kubectl
nerdctl
#golang
go
#python
python3
#c
gcc
];
}