noogle/devShell.nix

11 lines
218 B
Nix
Raw Permalink Normal View History

2023-11-23 14:31:33 +03:00
{
perSystem = { pkgs, self', config, ... }: {
devShells.default = pkgs.mkShell {
2023-11-28 19:28:51 +03:00
packages = [ pkgs.treefmt ];
2023-11-23 14:31:33 +03:00
shellHook = ''
${self'.checks.pre-commit-check.shellHook}
'';
};
};
}