Files
nixos-haus/modules/userapps/devutils.nix

35 lines
568 B
Nix

{
config,
pkgs,
...
}: {
# programs.neovim = {defaultEditor = true;};
environment.systemPackages = with pkgs; [
# Dev stuff, most of it might be replaced by devenvs later on
ghostty
tealdeer
#vscodium
gcc
python2
alejandra
devenv
#nodejs
#mermaid-cli
rustup
delta
kondo
#ciscoPacketTracer8
helix
# stuff needed by neovim
#vimPlugins.LazyVim
#texliveSmall # for pdflatex
#fzf
#lazygit
#tree-sitter
#neovim
#mcfly
#luajitPackages.luarocks-nix
#tectonic
];
}