snowflake/modules/home/git/git.nix
2023-01-31 03:45:25 -05:00

15 lines
No EOL
277 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"];
};
}