Move ci-runner to user and add git, virsh and nix to path

This commit is contained in:
Benjamin Bädorf 2022-08-13 22:31:30 +02:00
parent 0b229a771e
commit e3d76f1999
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C

View file

@ -10,7 +10,7 @@ in
};
config = mkIf cfg.enable {
systemd.services.ci-runner = {
systemd.user.services.ci-runner = {
enable = true;
description = "CI runner for the PubSolarOS repository that can run test VM instances with KVM.";
@ -20,6 +20,8 @@ in
Restart = "always";
};
path = "${pkgs.git}/bin:${pkgs.nix}/bin:${pkgs.libvirt}/bin";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" "libvirtd.service" ];
@ -29,7 +31,7 @@ in
age.secrets."drone-runner-exec-config" = {
file = "${self}/secrets/drone-runner-exec-config";
mode = "700";
owner = "root";
owner = psCfg.user.name;
};
};
}