snowflake/modules/home/git/git.nix
2023-01-30 11:31:25 -05:00

15 lines
262 B
Nix

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