snowflake/home/git/default.nix

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"];
};
}