From d1a9fdb9fdd106405bb1b34b22f70f8412a03d44 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Fri, 15 Nov 2024 18:30:52 -0800 Subject: [PATCH] feat(home/my): Default to username instead of name for git --- modules/home/options/my/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home/options/my/default.nix b/modules/home/options/my/default.nix index 46eb655..3b2f2a3 100644 --- a/modules/home/options/my/default.nix +++ b/modules/home/options/my/default.nix @@ -40,7 +40,7 @@ in git.name = mkOption { type = with types; str; - default = name; + default = username; description = "Your git committer name."; };