From a9d1ee262faf0a2ea07ece78d84e03d1b03c0980 Mon Sep 17 00:00:00 2001 From: Nathan Date: Thu, 16 Jan 2025 14:44:05 -0600 Subject: [PATCH] added colorscheme default option --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 0c84de3..f3a607f 100644 --- a/flake.nix +++ b/flake.nix @@ -22,7 +22,7 @@ let nixvimLib = nixvim.lib.${system}; nixvim' = nixvim.legacyPackages.${system}; - nixvimModule = opts: { + nixvimModule = { opts }: { inherit pkgs; module = import ./config; # import the module directly # You can use `extraSpecialArgs` to pass additional arguments to your module files @@ -31,7 +31,7 @@ inherit opts; }; }; - nvim = opts: nixvim'.makeNixvimWithModule (nixvimModule opts); + nvim = { opts }: nixvim'.makeNixvimWithModule (nixvimModule { inherit opts; }); in { checks = {