From 2872f976ba7f8702b464a84ba23b63dc01e41df3 Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Sat, 10 Jan 2026 20:45:40 +0100 Subject: [PATCH] dev/flake-module: delegate pre-commit installation to upstream Fixes: fcf9d5234bea ("dev: Add pre-commit-hooks.nix") --- dev/flake-module.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dev/flake-module.nix b/dev/flake-module.nix index 88078ee..066fce4 100644 --- a/dev/flake-module.nix +++ b/dev/flake-module.nix @@ -22,11 +22,10 @@ devShells.default = pkgs.mkShell { nativeBuildInputs = [ pkgs.nixpkgs-fmt - pkgs.pre-commit pkgs.hci ]; shellHook = '' - ${config.pre-commit.installationScript} + ${config.pre-commit.shellHook} ''; };