nixos-config/config/programs/git.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

2022-03-06 07:55:08 +00:00
{ pkgs, ... }:
let gitTemplate = pkgs.stdenv.mkDerivation {
name = "git-template";
2022-03-06 08:02:18 +00:00
src = pkgs.writeText "dummy" "";
2022-03-06 07:55:08 +00:00
nativeBuildInputs = with pkgs; with rust-binaries; [
git
mit-commit-msg
mit-pre-commit
mit-prepare-commit-msg
];
2022-03-06 08:11:22 +00:00
buildPhase = ./.;
2022-03-06 07:58:24 +00:00
installPhase = with pkgs; with rust-binaries; ''
2022-03-06 07:55:08 +00:00
git init $out
ln -s $out/.git/hooks/commit-msg ${mit-commit-msg}/bin/mit-commit-msg
ln -s $out/.git/hooks/pre-commit ${mit-pre-commit}/bin/mit-pre-commit
ln -s $out/.git/hooks/prepare-commit-msg ${mit-prepare-commit-msg}/bin/mit-prepare-commit-msg
'';
};
in
{
2022-01-18 13:49:11 +00:00
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-06 07:55:08 +00:00
extraConfig = {
init.templatedir = "${gitTemplate}";
};
2022-01-18 13:49:11 +00:00
};
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
}