24 lines
218 B
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
|
|
];
|
|
}
|