This commit is contained in:
Bryan Ramos 2023-06-06 02:28:37 -04:00
parent cc18493707
commit 6fff6d1845
673 changed files with 1070 additions and 124971 deletions

View file

@ -0,0 +1,14 @@
{
enable = true;
userName = "Bryan Ramos";
userEmail = "bryan@ramos.codes";
signingKey = "F1F3466458452B2DF351F1E864D12BA95ACE1F2D";
extraConfig = {
init = { defaultBranch = "main"; };
};
ignores = [
"node_modules"
];
}

View file

@ -0,0 +1,19 @@
{ lib, config, ... }:
with lib;
let cfg = config.modules.git;
in
{ options.modules.git = { enable = mkEnableOption "git"; };
config = mkIf cfg.enable {
programs = {
git = import ./config/git.nix;
gh = {
enable = true;
settings.git_protocol = "ssh";
};
};
};
}