Properly set neovim as editor

This commit is contained in:
coolneng 2022-07-20 14:21:42 +02:00
parent 76e8c9c6e1
commit 3213dba96a
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 4 additions and 1 deletions

View File

@ -39,7 +39,10 @@ with pkgs;
}; };
# Set neovim as default editor # Set neovim as default editor
programs.neovim.defaultEditor = true; programs.neovim = {
enable = true;
defaultEditor = true;
};
# Set timezone and synchronize NTP # Set timezone and synchronize NTP
time.timeZone = "Europe/Brussels"; time.timeZone = "Europe/Brussels";