From 369d7f2fd8f340c0e01a857754619d58d806125e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Sat, 14 Dec 2024 23:05:54 +0100 Subject: [PATCH] fix(nvim): forward hm cfg options Otherwise there is no way to configure nvim from home manager as the options aren't read. --- nvim/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nvim/default.nix b/nvim/default.nix index ce16984..852db55 100644 --- a/nvim/default.nix +++ b/nvim/default.nix @@ -12,6 +12,7 @@ in nixpkgs = lib.mkForce { pkgs = import unstable { inherit system; }; }; enable = true; defaultEditor = lib.mkDefault true; + jhome.nvim = cfg; }) ]; }