From cad4f35ee938398345310f6458b30804d3025538 Mon Sep 17 00:00:00 2001 From: Fabian Hauser Date: Tue, 25 Mar 2025 14:32:40 +0200 Subject: [PATCH] Add pre-commit-hook with formatting --- .gitignore | 1 + dev-shells/default.nix | 21 +++++++++++++++------ flake.nix | 1 + 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 900f5b8..6454c83 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ result* /book /.sops.yaml /.nixos-test-history +/.pre-commit-config.yaml diff --git a/dev-shells/default.nix b/dev-shells/default.nix index 0b238d5..ee3a977 100644 --- a/dev-shells/default.nix +++ b/dev-shells/default.nix @@ -1,9 +1,21 @@ { pkgs, + git-hooks-nix, + treefmtEval, system, self, ... }: +let + pre-commit-check = git-hooks-nix.lib.${system}.run { + src = ../.; + hooks.treefmt = { + enable = true; + package = treefmtEval.config.build.wrapper; + always_run = true; + }; + }; +in { ${system}.default = pkgs.mkShellNoCC { name = "qois-infrastructure-shell"; @@ -14,7 +26,8 @@ vscode = pkgs.vscodium; }; in - [ vscodium-with-extensions ] + pre-commit-check.enabledPackages + ++ [ vscodium-with-extensions ] ++ (with self.packages.${system}; [ cache deploy-qois @@ -47,11 +60,7 @@ done export XDG_DATA_DIRS - # Make sure we support the pure case as well as non nixos cases - # where dynamic bash completions were not sourced. - #if ! type _completion_loader > /dev/null; then - # . ${pkgs.bash-completion}/etc/profile.d/bash_completion.sh - #fi + ${pre-commit-check.shellHook} ''; }; } diff --git a/flake.nix b/flake.nix index 0c46df2..8668199 100644 --- a/flake.nix +++ b/flake.nix @@ -62,6 +62,7 @@ nixpkgs-nixos-stable sops-nix private + git-hooks-nix ; inherit deployPkgs