Change url, update variable names.

This commit is contained in:
CronyAkatsuki 2025-02-23 18:30:57 +01:00
parent bd89cf5733
commit cf4bf773f9
3 changed files with 32 additions and 32 deletions

View file

@ -1,11 +1,11 @@
{
pkgs ? import <nixpkgs> {},
pre-commit-hooks,
git-hooks,
...
}: let
pre-commit-check = pre-commit-hooks.lib.${pkgs.system}.run {
git-check = git-hooks.lib.${pkgs.system}.run {
src = ".";
hooks = {alejandra.enable = true;};
};
in
pkgs.mkShell {inherit (pre-commit-check) shellHook;}
pkgs.mkShell {inherit (git-check) shellHook;}