services.jenkins.jobBuilder.nixJobs

NixOS option

Job descriptions for Jenkins Job Builder in Nix format. This is a trivial wrapper around jsonJobs, using builtins.toJSON behind the scene.

type: list of (attribute set)
Default
[ ]
Example
[ { job =
    { name = "jenkins-job-test-3";
      builders = [
        { shell = "echo 'Hello world!'"; }
      ];
    };
  }
]
declared in: nixos/modules/services/continuous-integration/jenkins/job-builder.nixView source on NixOS/nixpkgs →