diff --git a/flake.nix b/flake.nix index ba69729..7518be3 100644 --- a/flake.nix +++ b/flake.nix @@ -22,8 +22,9 @@ # Activer nvim - programs.neovim.enable = true; - extraConfigLua = '' + programs.neovim = { + enable = true; + extraConfig = '' -- Add Dracula from Nix flake input vim.opt.rtp:prepend("${inputs.plugin-dracula}"); @@ -33,4 +34,5 @@ }; }; + }; }