From afdff71d320816b7c6be1b2f37a6a844bd0a2865 Mon Sep 17 00:00:00 2001 From: Andrei Lazarescu Date: Wed, 4 Jun 2025 11:28:06 +0300 Subject: [PATCH] fix(system): enable smart commit for git --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index d7f52c7..6520738 100644 --- a/flake.nix +++ b/flake.nix @@ -161,6 +161,7 @@ "editor.fontLigatures" = true; "security.workspace.trust.enabled" = false; "remote.SSH.enableAgentForwarding" = true; + "git.enableSmartCommit" = true; }; }; }; @@ -209,6 +210,7 @@ }; init.defaultBranch = "main"; pull.rebase = true; + push.autoSetupRemote = true; "url \"git@github.com:\"".insteadOf = "gh:"; "url \"git@gitlab.com:\"".insteadOf = "gl:"; "url \"git@git.lazarescu.xyz:2222/lazandrei19/\"".insteadOf = "lz:";