initial commit

This commit is contained in:
cswimr 2024-11-16 13:38:09 -05:00
commit 53dc0a539d
13 changed files with 701 additions and 0 deletions

22
nixos/git.nix Executable file
View 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:"
];
};
};
};
};
}