snowflake/home/git/default.nix

15 lines
294 B
Nix
Raw Normal View History

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