-
Notifications
You must be signed in to change notification settings - Fork 449
Open
Labels
bugSomething isn't workingSomething isn't workingflakesRelated to running devenv using the flake integrationRelated to running devenv using the flake integration
Description
Describe the bug
using flake with multiple devenv as follow
devShells = forEachSystem (
system:
let
pkgs = inputs.nixpkgs.legacyPackages.${system};
in
{
default = import ./devnv.nix {
inherit inputs pkgs system;
};
api = import ./api/devenv.nix {
inherit inputs pkgs system;
};
ui = import ./ui/devenv.nix {
inherit inputs pkgs system;
};
}
);then running the following:
nix develop --no-pure-eval .#api -> this works and i get the `api` envwhen I then try to
devenv up #apiI get the following error:
No 'processes' option defined: https://devenv.sh/processes/
which is weird as the ./api/devenv.nix has postgress service and cargo watch process
staticdev
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingflakesRelated to running devenv using the flake integrationRelated to running devenv using the flake integration