Skip to content

Commit

Permalink
containers: set the defaults for containers accordingly
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed Jul 22, 2023
1 parent 1199125 commit fc0ff0e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/modules/containers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,13 @@ in
container.isBuilding = envContainerName != "";

containers.shell = {
name = "shell";
startupCommand = "bash";
name = lib.mkDefault "shell";
startupCommand = lib.mkDefault "bash";
};

containers.processes = {
name = "processes";
startupCommand = config.procfileScript;
name = lib.mkDefault "processes";
startupCommand = lib.mkDefault config.procfileScript;
};
}
(if envContainerName == "" then { } else {
Expand Down

0 comments on commit fc0ff0e

Please sign in to comment.