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