This commit is contained in:
parent
b2c240e87f
commit
cad4f35ee9
3 changed files with 17 additions and 6 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,3 +6,4 @@ result*
|
||||||
/book
|
/book
|
||||||
/.sops.yaml
|
/.sops.yaml
|
||||||
/.nixos-test-history
|
/.nixos-test-history
|
||||||
|
/.pre-commit-config.yaml
|
||||||
|
|
|
@ -1,9 +1,21 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
|
git-hooks-nix,
|
||||||
|
treefmtEval,
|
||||||
system,
|
system,
|
||||||
self,
|
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 {
|
${system}.default = pkgs.mkShellNoCC {
|
||||||
name = "qois-infrastructure-shell";
|
name = "qois-infrastructure-shell";
|
||||||
|
@ -14,7 +26,8 @@
|
||||||
vscode = pkgs.vscodium;
|
vscode = pkgs.vscodium;
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
[ vscodium-with-extensions ]
|
pre-commit-check.enabledPackages
|
||||||
|
++ [ vscodium-with-extensions ]
|
||||||
++ (with self.packages.${system}; [
|
++ (with self.packages.${system}; [
|
||||||
cache
|
cache
|
||||||
deploy-qois
|
deploy-qois
|
||||||
|
@ -47,11 +60,7 @@
|
||||||
done
|
done
|
||||||
export XDG_DATA_DIRS
|
export XDG_DATA_DIRS
|
||||||
|
|
||||||
# Make sure we support the pure case as well as non nixos cases
|
${pre-commit-check.shellHook}
|
||||||
# where dynamic bash completions were not sourced.
|
|
||||||
#if ! type _completion_loader > /dev/null; then
|
|
||||||
# . ${pkgs.bash-completion}/etc/profile.d/bash_completion.sh
|
|
||||||
#fi
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,6 +62,7 @@
|
||||||
nixpkgs-nixos-stable
|
nixpkgs-nixos-stable
|
||||||
sops-nix
|
sops-nix
|
||||||
private
|
private
|
||||||
|
git-hooks-nix
|
||||||
;
|
;
|
||||||
inherit
|
inherit
|
||||||
deployPkgs
|
deployPkgs
|
||||||
|
|
Loading…
Add table
Reference in a new issue