snowflake/home/git/default.nix

16 lines
280 B
Nix
Raw Normal View History

2023-01-30 11:31:25 -05:00
{pkgs, ...}: {
2023-02-27 05:12:00 -05:00
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"];
};
}