DevShell

services-flake uses mkShell function to provide a shell with packages of all the enabled services.

# Inside `perSystem`
{
  process-compose."my-pc" = { ... };
  devShells.default = pkgs.mkShell {
    inputsFrom = [
      config.process-compose."my-pc".services.outputs.devShell;
    ];
    # ...
  };
}
Links to this page