This commit is contained in:
2025-12-13 18:33:07 +03:00
parent 257c6d2eed
commit c9c8cfc2a1
2 changed files with 7 additions and 5 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, gitName, gitEmail, ... }:
{
programs.git = {
@@ -7,8 +7,8 @@
settings = {
pull.rebase = true;
user = {
email = "gudovdo@my.msu.ru";
name = "Dmitrii Gudov";
name = gitName;
email = gitEmail;
};
};
};