Skip to content

Commit 018783e

Browse files
committed
Revert "add detached CLI option (#87)"
This reverts commit b590e39.
1 parent b590e39 commit 018783e

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

nix/process-compose/cli.nix

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,6 @@ in
3333
default = { };
3434
type = types.submodule {
3535
options = {
36-
detached = mkOption {
37-
type = types.bool;
38-
default = false;
39-
description = "Pass --detached to process-compose";
40-
};
4136
log-file = mkOption {
4237
type = types.nullOr types.str;
4338
default = null;
@@ -85,8 +80,7 @@ in
8580
readOnly = true;
8681
description = "The final CLI arguments we will pass to process-compose binary.";
8782
default = let o = config.cli.options; in lib.escapeShellArgs (
88-
(lib.optionals o.detached [ "--detached" ])
89-
++ (lib.optionals (o.log-file != null) [ "--log-file" o.log-file ])
83+
(lib.optionals (o.log-file != null) [ "--log-file" o.log-file ])
9084
++ (lib.optionals o.no-server [ "--no-server" ])
9185
++ (lib.optionals o.ordered-shutdown [ "--ordered-shutdown" ])
9286
++ (lib.optionals (o.port != null) [ "--port" "${builtins.toString o.port}" ])

0 commit comments

Comments
 (0)