From d35b908001e87ea046f063056baeb6671f0bed82 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Fri, 12 Sep 2025 12:24:42 +0200 Subject: [PATCH] feat: commit with nvim (rather than nano) :sparkles: --- nixos/home/danny/home.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nixos/home/danny/home.nix b/nixos/home/danny/home.nix index 11d8310..272206f 100644 --- a/nixos/home/danny/home.nix +++ b/nixos/home/danny/home.nix @@ -121,6 +121,16 @@ ]; }; + # Git configuration + programs.git = { + enable = true; + extraConfig = { + core = { + editor = "nvim"; + }; + }; + }; + # Alacritty terminal configuration (managed by Home Manager) programs.alacritty = { enable = true;