Update shared configuration to include the server

This commit is contained in:
thiloho
2023-07-26 11:46:45 +02:00
parent cdea5082a1
commit ceaa04748d

View File

@@ -31,13 +31,20 @@
}; };
home-manager.users.thiloho = { ... }: { home-manager.users.thiloho = { ... }: {
programs.git = { programs = {
enable = true; git = {
userName = "thiloho"; enable = true;
userEmail = "123883702+thiloho@users.noreply.github.com"; userName = "thiloho";
# signing = { userEmail = "123883702+thiloho@users.noreply.github.com";
# signByDefault = true; # signing = {
# }; # signByDefault = true;
# };
};
helix = {
enable = true;
defaultEditor = true;
settings.theme = "ayu_dark";
};
}; };
}; };
} }