nix/home-manager/shared/programs/dev/default.nix

24 lines
218 B
Nix

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