From 31582903b52d4775c358afbbd9bdad3e2dbb1402 Mon Sep 17 00:00:00 2001 From: Michael Thomson Date: Wed, 30 Apr 2025 15:40:10 -0400 Subject: [PATCH] fix default editor --- modules/home-manager/nixcats/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/home-manager/nixcats/default.nix b/modules/home-manager/nixcats/default.nix index 202af1b..140a15d 100644 --- a/modules/home-manager/nixcats/default.nix +++ b/modules/home-manager/nixcats/default.nix @@ -4,7 +4,11 @@ in { imports = [ inputs.nixCats.homeModule ]; + config = { + home.sessionVariables = { + EDITOR = "nvim"; + }; nixCats = { enable = true; packageNames = [ "nvim" ];