14 lines
302 B
Nix
14 lines
302 B
Nix
{ inputs, pkgs, ... }: {
|
|
home.sessionVariables = { EDITOR = "nvim"; };
|
|
|
|
programs.neovim = {
|
|
enable = true;
|
|
package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default;
|
|
vimAlias = true;
|
|
vimdiffAlias = true;
|
|
withNodeJs = true;
|
|
};
|
|
|
|
programs.nvchad.enable = true;
|
|
}
|