From 3213dba96ac13c42f1b9a5e9391b8cf216b1227d Mon Sep 17 00:00:00 2001 From: coolneng Date: Wed, 20 Jul 2022 14:21:42 +0200 Subject: [PATCH] Properly set neovim as editor --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 390d498..4348a04 100644 --- a/configuration.nix +++ b/configuration.nix @@ -39,7 +39,10 @@ with pkgs; }; # Set neovim as default editor - programs.neovim.defaultEditor = true; + programs.neovim = { + enable = true; + defaultEditor = true; + }; # Set timezone and synchronize NTP time.timeZone = "Europe/Brussels";