···170170 default = null;
171171 defaultText = literalExpression "username";
172172 };
173173+174174+ workDir = mkOption {
175175+ type = with types; nullOr str;
176176+ description = lib.mdDoc ''
177177+ Working directory, available as `$GITHUB_WORKSPACE` during workflow runs
178178+ and used as a default for [repository checkouts](https://github.com/actions/checkout).
179179+ The service cleans this directory on every service start.
180180+181181+ A value of `null` will default to the systemd `RuntimeDirectory`.
182182+ '';
183183+ default = null;
184184+ };
173185}