nix/home-manager/shared/programs/dev.nix
iofq 77164adab6
Some checks are pending
/ check (push) Waiting to run
dec
2025-12-17 23:59:17 -06:00

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
];
}