nix/home-manager/shared/programs/dev.nix
iofq 3d8242b314
Some checks failed
/ check (push) Has been cancelled
opentofu incus
2026-03-23 00:19:00 -05:00

41 lines
402 B
Nix

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