Fix compgen not found error

Fix the `compgen not found` error when running `run help`, or `run` with
no arguments within a direnv shell.
This commit is contained in:
Oliver Davies 2024-07-30 20:20:36 +01:00
parent 22d7d4e57e
commit b76e48a122
2 changed files with 2 additions and 1 deletions

View file

@ -5,6 +5,7 @@ language: php
flake: flake:
devshell: devshell:
packages: packages:
- bashInteractive
- nodePackages.pnpm - nodePackages.pnpm
- nodejs - nodejs
- php82 - php82

View file

@ -12,7 +12,7 @@
inherit (pkgs) mkShell; inherit (pkgs) mkShell;
in { in {
devShells.${system}.default = devShells.${system}.default =
mkShell { buildInputs = with pkgs; [ nodePackages.pnpm nodejs php82 php82Packages.composer ]; }; mkShell { buildInputs = with pkgs; [ bashInteractive nodePackages.pnpm nodejs php82 php82Packages.composer ]; };
formatter.${system} = pkgs.nixfmt; formatter.${system} = pkgs.nixfmt;
}; };