36 lines
575 B
Nix
36 lines
575 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# programs.neovim = {defaultEditor = true;};
|
|
environment.systemPackages = with pkgs; [
|
|
# Dev stuff, most of it might be replaced by devenvs later on
|
|
nh
|
|
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
|
|
];
|
|
}
|