Add pre-commit-hook with formatting
Some checks failed
CI / build (push) Failing after 47s

This commit is contained in:
Fabian Hauser 2025-03-25 14:32:40 +02:00
parent b2c240e87f
commit cad4f35ee9
3 changed files with 17 additions and 6 deletions

1
.gitignore vendored
View file

@ -6,3 +6,4 @@ result*
/book
/.sops.yaml
/.nixos-test-history
/.pre-commit-config.yaml

View file

@ -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}
'';
};
}

View file

@ -62,6 +62,7 @@
nixpkgs-nixos-stable
sops-nix
private
git-hooks-nix
;
inherit
deployPkgs