nixconfig/home/cli/git/default.nix
2023-06-17 15:31:40 +02:00

20 lines
327 B
Nix
Executable File

{
pkgs,
...
}: {
programs.git = {
enable = true;
userEmail = "soraefir+git@pm.me";
userName = "soraefir";
signing = {
key = "4E241635F8EDD2919D2FB44CA362EA0491E2EEA0";
signByDefault = true;
};
ignores = ["*result*" ".direnv" "node_modules"];
};
home.packages = with pkgs; [
tig
];
}