From 9f04e1b3828151a38de3731355d24f981e8648fd Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Sun, 17 Mar 2024 11:26:00 +0800 Subject: [PATCH] fix: pre-commit-hooks - broken path --- outputs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/outputs/default.nix b/outputs/default.nix index e2ac8c33..037eff84 100644 --- a/outputs/default.nix +++ b/outputs/default.nix @@ -104,11 +104,11 @@ in { settings = { typos = { write = true; # Automatically fix typos - configPath = "../.typos.toml"; + configPath = "./.typos.toml"; # relative to the flake root }; prettier = { write = true; # Automatically format files - configPath = "./.prettierrc.yaml"; + configPath = "./.prettierrc.yaml"; # relative to the flake root }; }; };