snowflake/modules/home/git/default.nix
2023-02-27 05:12:00 -05:00

16 lines
No EOL
280 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"];
};
}