From 0afd4f29235d3f4fa8210c4c370a5632b1e1a3b2 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 22 Jul 2024 14:45:44 +0200 Subject: [PATCH] feat: disable `neovim` from within the repo itself --- modules/home/nvim.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home/nvim.nix b/modules/home/nvim.nix index 8c526a9..e0b493f 100644 --- a/modules/home/nvim.nix +++ b/modules/home/nvim.nix @@ -1,7 +1,7 @@ { pkgs, ... }: { programs.neovim = { - enable = true; - vimAlias = true; + enable = false; + vimAlias = false; }; }