Remove 'shell' submodule (meaningless)

This commit is contained in:
Sridhar Ratnakumar 2023-06-09 17:33:59 -04:00
parent 06697488d3
commit c206414e7d

View File

@ -46,29 +46,15 @@ in
example = "./pc.log";
};
shell = {
shell_argument = mkOption {
type = types.str;
default = "-c";
example = "-c";
};
shell_command = mkOption {
type = types.str;
description = ''
The shell to use to run the process `command`s.
For reproducibility across systems, by default this uses
`pkgs.bash`.
'';
default = lib.getExe pkgs.bash;
};
};
version = mkOption {
type = types.nullOr types.str;
default = null;
example = "0.5";
};
# NOTE: We don't allow the `shell` option because it meaningless in
# lieu of our use of pkgs.writeShellApplication (see command.nix).
};
};
example =