flake/nixos/git.nix

26 lines
453 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:"
];
};
};
};
};
}