Files
nixos-haus/modules/userapps/devutils.nix
2025-11-02 17:08:26 +02:00

35 lines
554 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
];
}