From 516b596455e95bb9f94a2cd568e12b62cd7c2a38 Mon Sep 17 00:00:00 2001 From: Michon van Dooren Date: Sun, 9 Nov 2025 18:03:04 +0100 Subject: [PATCH] Fix shellHook in the flake-parts module --- flake-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake-module.nix b/flake-module.nix index cb2e6cf9..7405e5e9 100644 --- a/flake-module.nix +++ b/flake-module.nix @@ -52,7 +52,7 @@ in shellHook = mkOption { type = types.str; description = "A shell hook that installs up the git hooks in a development shell."; - default = cfg.settings.installationScript; + default = cfg.settings.shellHook; defaultText = lib.literalExpression "bash statements"; readOnly = true; };