40 lines
533 B
Nix
40 lines
533 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.neovim = {defaultEditor = true;};
|
|
environment.systemPackages = with pkgs; [
|
|
vimPlugins.LazyVim
|
|
# stuff needed by neovim
|
|
texliveSmall # for pdflatex
|
|
fzf
|
|
lazygit
|
|
tree-sitter
|
|
neovim
|
|
mcfly
|
|
luajitPackages.luarocks-nix
|
|
pdflatex
|
|
tectonic
|
|
gs
|
|
pciutils
|
|
btop
|
|
nload
|
|
htop
|
|
nethogs
|
|
uutils-coreutils-noprefix
|
|
neovim
|
|
git
|
|
curl
|
|
bat
|
|
eza
|
|
dua
|
|
ripgrep
|
|
dig
|
|
fd
|
|
proxychains-ng
|
|
unzip
|
|
wget
|
|
];
|
|
}
|