diff --git a/home/base.nix b/home/base.nix index c3ad1c3..ae501ad 100644 --- a/home/base.nix +++ b/home/base.nix @@ -5,11 +5,18 @@ ./zsh.nix ]; - home.packages = with pkgs; [ - bottom - unstable.ncdu - neofetch - ]; + home = { + packages = with pkgs; [ + bottom + unstable.ncdu + neofetch + ]; + + sessionVariables = { + EDITOR = "nvim"; + VISUAL = "nvim"; + }; + }; programs.nix-index = { enable = true;