Remove absolute path to neovim

This commit is contained in:
RealStickman 2023-05-01 12:57:31 +02:00
parent 38f5be2762
commit 856f214374

View File

@ -35,8 +35,8 @@ in
environment = {
shells = [ pkgs.fish ];
variables = {
EDITOR = "/run/current-system/sw/bin/nvim";
VISUAL = "/run/current-system/sw/bin/nvim";
EDITOR = "nvim";
VISUAL = "nvim";
};
# remove nano from default packages
defaultPackages = [ pkgs.perl pkgs.rsync pkgs.strace ];