Add git module

This commit is contained in:
aloslider
2026-03-14 16:16:20 +03:00
parent 7c82eb5dc5
commit 03548606e4
3 changed files with 20 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{ config, ... }: {
programs.git = {
enable = true;
settings = {
user = {
name = "aloslider";
email = "53711835+aloslider@users.noreply.github.com";
};
init.defaultBranch = "master";
};
};
}