nixos-config/config/programs/git.nix

23 lines
513 B
Nix
Raw Normal View History

2022-01-18 13:49:11 +00:00
{ pkgs, ... }: {
programs.git = {
enable = true;
package = pkgs.gitAndTools.gitFull;
lfs.enable = true;
signing.signByDefault = true;
signing.key = "AB2BD8DAF2E37122";
2022-01-18 13:49:11 +00:00
userEmail = "lotte@chir.rs";
userName = "Charlotte 🦝 Delenk";
};
2022-03-05 20:42:53 +00:00
home.packages = with pkgs.rust-binaries; [
git-mit
git-mit-config
git-mit-install
git-mit-relates-to
mit-commit-message-lints
mit-commit-msg
mit-hook-test-helper
mit-pre-commit
2022-03-05 20:44:06 +00:00
mit-prepare-commit-msg
2022-03-05 20:42:53 +00:00
];
2022-01-19 08:28:39 +00:00
}