10 lines
161 B
Nix
10 lines
161 B
Nix
let
|
|
userName = "danny";
|
|
email = "Danny10132024@gmail.com";
|
|
in {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = userName;
|
|
userEmail = email;
|
|
};
|
|
}
|