12 lines
160 B
Nix
12 lines
160 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# Git configuration
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "Sara Gerretsen";
|
||
|
userEmail = "sara@saragerretsen.nl";
|
||
|
};
|
||
|
}
|
||
|
|