feat: configure git in nix

This commit is contained in:
notohh 2023-01-30 11:31:25 -05:00
parent be00852fe2
commit 61549a64c5
2 changed files with 15 additions and 0 deletions

15
modules/home/git/git.nix Normal file
View file

@ -0,0 +1,15 @@
{pkgs, ...}: {
home.packages = [pkgs.gh];
programs.git = {
enable = true;
userEmail = "github@notohh.dev";
userName = "notohh";
signing = {
key = "";
signByDefault = false;
};
ignores = ["*result*" ".direnv" "node_modules"];
};
}