···170 default = null;
171 defaultText = literalExpression "username";
172 };
173+174+ workDir = mkOption {
175+ type = with types; nullOr str;
176+ description = lib.mdDoc ''
177+ Working directory, available as `$GITHUB_WORKSPACE` during workflow runs
178+ and used as a default for [repository checkouts](https://github.com/actions/checkout).
179+ The service cleans this directory on every service start.
180+181+ A value of `null` will default to the systemd `RuntimeDirectory`.
182+ '';
183+ default = null;
184+ };
185}