snowflake/modules/home/git/git.nix

15 lines
262 B
Nix
Raw Normal View History

2023-01-30 11:31:25 -05:00
{pkgs, ...}: {
home.packages = [pkgs.gh];
programs.git = {
enable = true;
userEmail = "github@notohh.dev";
userName = "notohh";
signing = {
key = "";
signByDefault = false;
};
ignores = ["*result*" ".direnv" "node_modules"];
};
}