From: Skullheadx Date: Sun, 26 Apr 2026 03:16:56 +0000 (-0400) Subject: fix nvi X-Git-Url: http://git.skullheadx.com/nixos/README?a=commitdiff_plain;h=8a45dcaf745386036da5876a747bc3e44d49d72d;p=nixos.git fix nvi --- 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 = {