# ShellExec Stage for executing an arbitrary shell command. ## Config ``` shellExec: cmd: String # Command to execute additional_packages: [String]? # Additional packages to install via the package manager ``` ### Example ```yaml shellExec: cmd: "neofetch" additional_packages: ["neofetch"] ```