feat: configure git in nix
This commit is contained in:
parent
be00852fe2
commit
61549a64c5
2 changed files with 15 additions and 0 deletions
15
modules/home/git/git.nix
Normal file
15
modules/home/git/git.nix
Normal 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"];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue