1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-01 02:48:30 +02:00
home-manager/tests/modules/programs/git/git-with-hooks.nix
2022-09-08 11:05:07 +02:00

27 lines
693 B
Nix

{ pkgs, ... }:
{
programs.git = {
enable = true;
hooks = { pre-commit = ./git-pre-commit-hook.sh; };
};
nmt.script = ''
function getGitConfig() {
${pkgs.gitMinimal}/bin/git config \
--file $TESTED/home-files/.config/git/config \
--get $1
}
assertFileExists home-files/.config/git/config
hookPath=$(getGitConfig core.hooksPath)
assertLinkExists $hookPath/pre-commit
actual="$(readlink "$hookPath/pre-commit")"
expected="${./git-pre-commit-hook.sh}"
if [[ $actual != $expected ]]; then
fail "Symlink $hookPath/pre-commit should point to $expected via the Nix store, but it actually points to $actual."
fi
'';
}