26 lines
438 B
Nix
26 lines
438 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Michael Thomson";
|
|
userEmail = "michael@michaelthomson.dev";
|
|
diff-so-fancy = {
|
|
enable = true;
|
|
};
|
|
includes = [
|
|
{
|
|
condition = "gitdir:~/dev/work/";
|
|
contents = {
|
|
user = {
|
|
email = "mthomson@konradgroup.com";
|
|
name = "Michael Thomson";
|
|
};
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|