nix/home-manager/shared/programs/dev.nix
2025-07-06 12:51:06 -05:00

26 lines
247 B
Nix

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