23 lines
425 B
Nix
23 lines
425 B
Nix
|
{
|
||
|
programs.git = {
|
||
|
config = {
|
||
|
init = { defaultBranch = "master"; };
|
||
|
safe = { directory = "/etc/nixos"; };
|
||
|
url = {
|
||
|
"https://www.coastalcommits.com/" = {
|
||
|
insteadOf = [
|
||
|
"cc:"
|
||
|
"coastalcommits:"
|
||
|
];
|
||
|
};
|
||
|
"https://github.com/" = {
|
||
|
insteadOf = [
|
||
|
"gh:"
|
||
|
"github:"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|