nix/modules/nixos/development-tools.nix

19 lines
281 B
Nix
Raw Normal View History

2024-03-13 21:12:14 -05:00
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
watchexec
2024-03-13 21:34:27 -05:00
android-tools
2024-03-14 14:04:31 -05:00
kubectl
stern
2024-03-13 21:34:27 -05:00
libresprite
audacity
wol
shellcheck
shfmt
2024-03-13 21:57:57 -05:00
nodePackages.bash-language-server
2024-03-14 14:04:31 -05:00
nodePackages.yaml-language-server
2024-03-13 21:12:14 -05:00
xh
2024-03-13 21:34:27 -05:00
jq
2024-03-13 21:12:14 -05:00
curl
];
}