Fix invalid Home Manager git options

Replace config.user.{name,email} with userName/userEmail and settings.alias with aliases.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_018D8GH3ssjrRwCLuwXMxsBE
This commit is contained in:
Leo Alho 2026-07-28 13:52:35 +03:00
parent e5e24c7976
commit 68b9ec4a18

View file

@ -123,18 +123,16 @@
#############################################################################
programs.git = {
enable = true;
config.user = {
name = "Leo Alho";
email = "leoalho@proton.me";
};
userName = "Leo Alho";
userEmail = "leoalho@proton.me";
lfs.enable = true;
settings.alias = {
co = "checkout";
br = "branch";
c = "commit";
a = "add";
p = "push";
st = "status";
aliases = {
co = "checkout";
br = "branch";
c = "commit";
a = "add";
p = "push";
st = "status";
};
extraConfig = {
init.defaultBranch = "main";