···9in {
10 options = {
11 services.jenkins.jobBuilder = {
12- enable = mkOption {
13- type = types.bool;
14- default = false;
15- description = lib.mdDoc ''
16- Whether or not to enable the Jenkins Job Builder (JJB) service. It
17- allows defining jobs for Jenkins in a declarative manner.
1819- Jobs managed through the Jenkins WebUI (or by other means) are left
20- unchanged.
2122- Note that it really is declarative configuration; if you remove a
23- previously defined job, the corresponding job directory will be
24- deleted.
2526- Please see the Jenkins Job Builder documentation for more info:
27- [
28- http://docs.openstack.org/infra/jenkins-job-builder/](http://docs.openstack.org/infra/jenkins-job-builder/)
29- '';
30- };
3132 accessUser = mkOption {
33 default = "admin";
···9in {
10 options = {
11 services.jenkins.jobBuilder = {
12+ enable = mkEnableOption (mdDoc ''
13+ the Jenkins Job Builder (JJB) service. It
14+ allows defining jobs for Jenkins in a declarative manner.
0001516+ Jobs managed through the Jenkins WebUI (or by other means) are left
17+ unchanged.
1819+ Note that it really is declarative configuration; if you remove a
20+ previously defined job, the corresponding job directory will be
21+ deleted.
2223+ Please see the Jenkins Job Builder documentation for more info:
24+ <https://jenkins-job-builder.readthedocs.io/>
25+ '');
002627 accessUser = mkOption {
28 default = "admin";