40 lines
388 B
Nix
40 lines
388 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
#sys
|
|
p7zip
|
|
gnumake
|
|
jq
|
|
tree
|
|
jjui
|
|
|
|
#devops
|
|
k9s
|
|
kubectl
|
|
nerdctl
|
|
gh
|
|
|
|
#golang
|
|
go
|
|
|
|
#python
|
|
python3
|
|
|
|
#c
|
|
gcc
|
|
|
|
# linters
|
|
yamllint
|
|
jq
|
|
hadolint
|
|
nixfmt
|
|
shellcheck
|
|
golangci-lint
|
|
|
|
# LSPs
|
|
gopls
|
|
lua-language-server
|
|
nixd
|
|
basedpyright
|
|
];
|
|
}
|