snowflake/home/git/default.nix

17 lines
283 B
Nix
Raw Normal View History

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