mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
15 lines
200 B
Nix
15 lines
200 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
nodes = {
|
||
|
master = { pkgs, config, ... }: {
|
||
|
services.jenkins.enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
startAll;
|
||
|
|
||
|
$master->waitForUnit("jenkins");
|
||
|
'';
|
||
|
}
|