mirror of
https://github.com/nix-community/noogle.git
synced 2024-11-22 14:45:15 +03:00
11 lines
218 B
Nix
11 lines
218 B
Nix
{
|
|
perSystem = { pkgs, self', config, ... }: {
|
|
devShells.default = pkgs.mkShell {
|
|
packages = [ pkgs.treefmt ];
|
|
shellHook = ''
|
|
${self'.checks.pre-commit-check.shellHook}
|
|
'';
|
|
};
|
|
};
|
|
}
|