clan-core/devShell.nix
Johannes Kirschbauer c9b19b5060
All checks were successful
build / test (push) Successful in 20s
init: ui bootstrapping nextjs
2023-08-05 11:42:48 +02:00

24 lines
458 B
Nix

{
perSystem =
{ pkgs
, self'
, config
, ...
}: {
devShells.default = pkgs.mkShell {
inputsFrom = [
config.treefmt.build.devShell
];
packages = [
pkgs.tea
pkgs.nodejs_20
self'.packages.tea-create-pr
self'.packages.merge-after-ci
];
shellHook = ''
ln -sf ../../scripts/pre-commit .git/hooks/pre-commit
'';
};
};
}