nix/modules/nixos/development-tools.nix

16 lines
221 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
libresprite
audacity
wol
shellcheck
shfmt
2024-03-13 21:57:57 -05:00
nodePackages.bash-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
];
}