12 lines
169 B
Nix
12 lines
169 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
|
|
userEmail = "gudovdo@my.msu.ru";
|
|
userName = "Krosh";
|
|
extraConfig.pull.rebase = true;
|
|
};
|
|
}
|