From 0fa772f8b765db4aa830d9868b488e9e0fe75430 Mon Sep 17 00:00:00 2001 From: Arthur Wambst Date: Thu, 20 Feb 2025 12:02:14 +0100 Subject: [PATCH] dev theme --- flake.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 @@ }; }; + }; }