diff --git a/modules/customisation.nix b/modules/customisation.nix index 824f102..65e1092 100644 --- a/modules/customisation.nix +++ b/modules/customisation.nix @@ -1,7 +1,10 @@ {pkgs, ...}: { + # install and set neovim as MANPAGER environment.systemPackages = [pkgs.neovim]; environment.variables = { "MANPAGER" = "nvim +Man!"; + + # set neovim as default editor "EDITOR" = "nvim"; }; }