diff options
| author | Skullheadx <admonty1@protonmail.com> | 2026-04-25 23:16:56 -0400 |
|---|---|---|
| committer | Skullheadx <admonty1@protonmail.com> | 2026-04-25 23:16:56 -0400 |
| commit | 8a45dcaf745386036da5876a747bc3e44d49d72d (patch) | |
| tree | 8bb5f1d52de0b66c46fba79bfdb731194beff28b | |
| parent | move neovim (diff) | |
| download | nixos-8a45dcaf745386036da5876a747bc3e44d49d72d.tar.gz nixos-8a45dcaf745386036da5876a747bc3e44d49d72d.tar.bz2 nixos-8a45dcaf745386036da5876a747bc3e44d49d72d.zip | |
fix nvi
Diffstat (limited to '')
| -rw-r--r-- | configuration.nix | 12 |
1 files 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 = { |
