Skip to content

Commit c206414

Browse files
committed
Remove 'shell' submodule (meaningless)
1 parent 0669748 commit c206414

File tree

1 file changed

+4
-18
lines changed

1 file changed

+4
-18
lines changed

nix/process-compose/settings/default.nix

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -46,29 +46,15 @@ in
4646
example = "./pc.log";
4747
};
4848

49-
shell = {
50-
shell_argument = mkOption {
51-
type = types.str;
52-
default = "-c";
53-
example = "-c";
54-
};
55-
shell_command = mkOption {
56-
type = types.str;
57-
description = ''
58-
The shell to use to run the process `command`s.
59-
60-
For reproducibility across systems, by default this uses
61-
`pkgs.bash`.
62-
'';
63-
default = lib.getExe pkgs.bash;
64-
};
65-
};
66-
6749
version = mkOption {
6850
type = types.nullOr types.str;
6951
default = null;
7052
example = "0.5";
7153
};
54+
55+
# NOTE: We don't allow the `shell` option because it meaningless in
56+
# lieu of our use of pkgs.writeShellApplication (see command.nix).
57+
7258
};
7359
};
7460
example =

0 commit comments

Comments
 (0)