This commit is contained in:
Arthur Wambst 2025-02-22 15:16:27 +01:00
parent cf2c272956
commit d39f1cc985

View File

@ -1,10 +1,11 @@
{ config, lib, inputs, ... }: { config, pkgs, lib, inputs, ... }:
with lib; { with lib; {
options.neovim = { options.neovim = {
enable = lib.mkEnableOption "Enable Neovim"; enable = lib.mkEnableOption "Enable Neovim";
default = true; default = true;
}; };
config = { config = {
# Installation de Neovim en tant que package système # Installation de Neovim en tant que package système
environment.systemPackages = [ inputs.neovim.packages.${pkgs.system}.neovim ]; environment.systemPackages = [ inputs.neovim.packages.${pkgs.system}.neovim ];