From d39f1cc98541a9290f97490861c1365c18e68e2f Mon Sep 17 00:00:00 2001 From: Arthur Wambst Date: Sat, 22 Feb 2025 15:16:27 +0100 Subject: [PATCH] dev --- modules/nvim/nvim.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/nvim/nvim.nix b/modules/nvim/nvim.nix index 6b4f476..39a4777 100644 --- a/modules/nvim/nvim.nix +++ b/modules/nvim/nvim.nix @@ -1,10 +1,11 @@ -{ config, lib, inputs, ... }: +{ config, pkgs, lib, inputs, ... }: with lib; { options.neovim = { enable = lib.mkEnableOption "Enable Neovim"; default = true; }; + config = { # Installation de Neovim en tant que package système environment.systemPackages = [ inputs.neovim.packages.${pkgs.system}.neovim ];