Update EDITOR again

This time use nixvim instead of neovim
Reference the `build.package` output for the final version with configs
and settings and all of that jazz
Set nixvim as my default editor
This commit is contained in:
Greg Hellings
2025-10-15 23:31:40 -05:00
parent b1c8bbab26
commit 59756f1748
4 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, lib, ... }:
{
programs.bash = {
@@ -14,7 +14,7 @@
sessionVariables = {
ANSIBLE_COLLECTIONS_PATH = "\${HOME}/src/";
CLICOLOR = "1";
EDITOR = "${pkgs.vim}/bin/vim";
EDITOR = lib.getExe config.programs.nixvim.build.package;
GIT_SSL_NO_VERIFY = "True";
LSCOLORS = "ExGxBxDxCxEgEdxbxgxcxd";
MAVEN_OPTS = " -Dmaven.wagon.http.ssl.insecure=true ";