From 3528441b8458ec3a46e8ddb0b17f912ddd968df3 Mon Sep 17 00:00:00 2001 From: kenny Date: Sun, 2 Nov 2025 18:05:13 +0200 Subject: [PATCH] Commented out a few programs - neovim + friends - vscodium - nodejs - mermaid-cli --- modules/userapps/devutils.nix | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/modules/userapps/devutils.nix b/modules/userapps/devutils.nix index a7f3b01..b47382a 100644 --- a/modules/userapps/devutils.nix +++ b/modules/userapps/devutils.nix @@ -3,32 +3,32 @@ pkgs, ... }: { - programs.neovim = {defaultEditor = true;}; + # programs.neovim = {defaultEditor = true;}; environment.systemPackages = with pkgs; [ # Dev stuff, most of it might be replaced by devenvs later on ghostty tealdeer - vscodium + #vscodium gcc python2 alejandra devenv - nodejs - mermaid-cli + #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 + #vimPlugins.LazyVim + #texliveSmall # for pdflatex + #fzf + #lazygit + #tree-sitter + #neovim + #mcfly + #luajitPackages.luarocks-nix + #tectonic ]; }