From 29ea2b6cdb5871516ea6fcba3f0456b1ba1d8b86 Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Wed, 5 Mar 2025 17:37:05 -0300 Subject: [PATCH] fix: missing neovim option set --- home.nix | 2 +- nixos.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/home.nix b/home.nix index fad04ee..9cb87d5 100644 --- a/home.nix +++ b/home.nix @@ -8,7 +8,7 @@ cfg = config.neovim; in with lib; { - options = { + options.neovim = { enable = mkOption { type = with types; bool; default = true; diff --git a/nixos.nix b/nixos.nix index 9408e86..f026ee0 100644 --- a/nixos.nix +++ b/nixos.nix @@ -8,7 +8,7 @@ cfg = config.neovim; in with lib; { - options = { + options.neovim = { enable = mkOption { type = with types; bool; default = true;