34 lines
542 B
Nix
34 lines
542 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
|
|
python
|
|
alejandra
|
|
devenv
|
|
nodejs
|
|
mermaid-cli
|
|
rustup
|
|
delta
|
|
kondo
|
|
ciscoPacketTracer8
|
|
# stuff needed by neovim
|
|
vimPlugins.LazyVim
|
|
texliveSmall # for pdflatex
|
|
fzf
|
|
lazygit
|
|
tree-sitter
|
|
neovim
|
|
mcfly
|
|
luajitPackages.luarocks-nix
|
|
tectonic
|
|
];
|
|
}
|