nixos-config/home-manager/modules/git.nix

30 lines
676 B
Nix
Raw Normal View History

2022-03-01 22:59:14 +00:00
{
2022-03-02 14:28:37 +00:00
programs.git = {
enable = true;
ignores = [ ".vscode" ];
userName = "fleaz";
userEmail = "mail@felixbreidenstein.de";
aliases = {
cpr = "!f() { git fetch origin refs/pull/$1/head && git checkout FETCH_HEAD; }; f";
2022-03-01 22:59:14 +00:00
};
2022-03-02 14:28:37 +00:00
includes = [{
condition = "gitdir:~/codemonauts/";
contents = {
user = {
email = "felix@codemonauts.com";
name = "Felix Breidenstein";
};
2022-03-01 22:59:14 +00:00
};
2022-03-02 14:28:37 +00:00
}
{
condition = "gitdir:~/kundendaten/";
contents = {
user = {
email = "felix@codemonauts.com";
name = "Felix Breidenstein";
};
};
}];
};
2022-03-01 22:59:14 +00:00
}