nixos/buildbot: master also wants network-online.target

This commit is contained in:
Jade Lovelace 2023-10-03 00:48:07 -07:00
parent ce602cc0aa
commit 81a3fa04ca

View File

@ -268,6 +268,7 @@ in {
systemd.services.buildbot-master = {
description = "Buildbot Continuous Integration Server.";
after = [ "network-online.target" ];
wants = [ "network-online.target" ];
wantedBy = [ "multi-user.target" ];
path = cfg.packages ++ cfg.pythonPackages python.pkgs;
environment.PYTHONPATH = "${python.withPackages (self: cfg.pythonPackages self ++ [ package ])}/${python.sitePackages}";