initial commit
This commit is contained in:
commit
53dc0a539d
13 changed files with 701 additions and 0 deletions
22
nixos/git.nix
Executable file
22
nixos/git.nix
Executable file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
programs.git = {
|
||||
config = {
|
||||
init = { defaultBranch = "master"; };
|
||||
safe = { directory = "/etc/nixos"; };
|
||||
url = {
|
||||
"https://www.coastalcommits.com/" = {
|
||||
insteadOf = [
|
||||
"cc:"
|
||||
"coastalcommits:"
|
||||
];
|
||||
};
|
||||
"https://github.com/" = {
|
||||
insteadOf = [
|
||||
"gh:"
|
||||
"github:"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue