snowflake/home/git/default.nix
2023-03-11 21:28:37 -05:00

17 lines
283 B
Nix

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