File tree Expand file tree Collapse file tree 1 file changed +4
-18
lines changed
nix/process-compose/settings Expand file tree Collapse file tree 1 file changed +4
-18
lines changed Original file line number Diff line number Diff line change 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 =
You can’t perform that action at this time.
0 commit comments