nix/modules/nixos/development-tools.nix

30 lines
576 B
Nix
Raw Normal View History

2024-03-13 21:12:14 -05:00
{pkgs, ...}: {
2024-03-19 10:25:29 -05:00
environment.sessionVariables.NIXOS_OZONE_WL = "1";
programs.neovim = {
enable = true;
# plugins = [
# pkgs.vimPlugins.nvim-treesitter.withAllGrammars
# ];
};
2024-03-13 21:12:14 -05:00
environment.systemPackages = with pkgs; [
2024-03-15 01:33:17 -05:00
taplo # toml language server for editing helix configs per repo
2024-03-13 21:12:14 -05:00
watchexec
2024-03-13 21:34:27 -05:00
android-tools
2024-03-14 14:04:31 -05:00
kubectl
2024-03-19 10:25:29 -05:00
vscode
2024-03-14 14:04:31 -05:00
stern
2024-03-13 21:34:27 -05:00
libresprite
audacity
wol
shellcheck
shfmt
2024-03-15 01:33:17 -05:00
vscode-langservers-extracted
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
];
}