10 lines
150 B
Nix
10 lines
150 B
Nix
{ pkgs, ...}: {
|
|
programs = {
|
|
neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
};
|
|
};
|
|
home.sessionVariables.EDITOR = "nvim";
|
|
}
|