Move neovim to homemanager

This commit is contained in:
2024-02-27 12:12:40 +01:00
parent dcff16294f
commit 3e9c1efd83
3 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
{ pkgs, ...}: {
programs = {
neovim = {
enable = true;
defaultEditor = true;
};
};
home.sessionVariables.EDITOR = "nvim";
}