2024-11-26 15:43:48 -05:00

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";
};
};
}
];
};
}