From 8a45dcaf745386036da5876a747bc3e44d49d72d Mon Sep 17 00:00:00 2001 From: Skullheadx Date: Sat, 25 Apr 2026 23:16:56 -0400 Subject: [PATCH] fix nvi --- configuration.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index adbbb91..9ec6a8c 100644 --- a/configuration.nix +++ b/configuration.nix @@ -80,9 +80,15 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - vim + (lib.lowPrio pkgs.vim) # Lower Vim's priority + (pkgs.writeShellApplication { + name = "vi"; + runtimeInputs = [ pkgs.nvi ]; + text = '' + exec ${pkgs.nvi}/bin/vi "$@" + ''; + }) neovim - nvi wget git librewolf @@ -100,6 +106,8 @@ xdotool ]; + + programs.git = { enable = true; config = { -- 2.54.0