fix: Small cleanup

This commit is contained in:
Jalil David Salamé Messina 2024-01-17 21:55:44 +01:00
parent b0638c190c
commit 08c1f445a3
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

@ -54,7 +54,7 @@
in
{
# Schemas tell Nix about the structure of your flake's outputs
schemas = flake-schemas.schemas;
inherit (flake-schemas) schemas;
checks = forEachSupportedSystem ({ pkgs, system }: {
pre-commit-check = pre-commit-hooks.lib.${system}.run {
@ -145,11 +145,6 @@
inherit nixosModule;
} // machineModules;
devShells = forEachSupportedSystem ({ pkgs, system }:
{
default = pkgs.mkShell {
inherit (self.checks.${system}.pre-commit-check) shellHook;
};
});
devShells = forEachSupportedSystem ({ pkgs, system }: { default = pkgs.mkShell { inherit (self.checks.${system}.pre-commit-check) shellHook; }; });
};
}