From 9b52493e5fb243ec9c70f52061b53c75d63a0a05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Mon, 17 Nov 2025 21:20:17 +0800 Subject: [PATCH] git-identities: remove hooks config for cabal It's actually pretty annoying to run the linter all the time --- nix/git-identities/list.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/nix/git-identities/list.nix b/nix/git-identities/list.nix index b318462b..245ac78c 100644 --- a/nix/git-identities/list.nix +++ b/nix/git-identities/list.nix @@ -19,8 +19,6 @@ let blameIgnore = { blame.ignoreRevsFile = ".git-blame-ignore-revs"; }; - - hooks = scriptsPath: { core.hooksPath = scriptsPath; }; in [ # Univ stuff @@ -54,9 +52,6 @@ in { url = "github.com"; path = "haskell/cabal.git"; - contents = lib.mkMerge [ - blameIgnore - (hooks "${./hooks/cabal}") - ]; + contents = blameIgnore; } ]