14 lines
230 B
Nix
14 lines
230 B
Nix
let
|
|
userName = "dachxy";
|
|
email = "Danny10132024@gmail.com";
|
|
in
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = userName;
|
|
userEmail = email;
|
|
extraConfig = {
|
|
safe.directory = [ "/etc/nixos" ];
|
|
};
|
|
};
|
|
}
|