fix: Small cleanup
This commit is contained in:
parent
b0638c190c
commit
08c1f445a3
1 changed files with 2 additions and 7 deletions
|
@ -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; }; });
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue