From d6048b0444658b9e6edf56b967caeed8afc6f339 Mon Sep 17 00:00:00 2001 From: Nico Date: Sat, 3 May 2025 16:16:00 +1000 Subject: [PATCH] nix: replace neovim option with package --- modules/shell.nix | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/modules/shell.nix b/modules/shell.nix index df2f70b..4fe1efd 100644 --- a/modules/shell.nix +++ b/modules/shell.nix @@ -4,6 +4,7 @@ programs.zsh.enable = true; environment.systemPackages = with pkgs; [ + neovim git zoxide tlrc @@ -37,13 +38,4 @@ loadInNixShell = true; nix-direnv.enable = true; }; - - programs.neovim = { - enable = true; - vimAlias = true; - viAlias = true; - withRuby = true; - withPython3 = true; - withNodeJs = true; - }; }