Fix jude gitlab-runner variables

This commit is contained in:
Greg Hellings
2025-05-21 23:14:13 -05:00
parent 635ff2926a
commit a2c939d12e
+6 -6
View File
@@ -6,6 +6,10 @@
}:
let
environmentVariables = {
EFI_DIR = "${pkgs.OVMF.fd}/FV/";
STORAGE_URL = "s3.thehellings.lan:9000";
};
passthru = [
"1002:164e" # Raphael - embedded GPU
"1002:1640" # Rembrandt - Audio
@@ -33,10 +37,8 @@ in
services.gitlab-runner.services = lib.mkForce {
vbox = {
inherit environmentVariables;
authenticationTokenConfigFile = config.age.secrets.vbox.path;
environmentVariables = {
EFI_DIR = "${pkgs.OVMF.fd}/FV/";
};
executor = "shell";
limit = 5;
};
@@ -87,12 +89,10 @@ in
enable = true;
settings.concurrent = 5;
services.qemu = {
inherit environmentVariables;
executor = "shell";
limit = 5;
authenticationTokenConfigFile = config.age.secrets.qemu.path;
environmentVariables = {
EFI_DIR = "${pkgs.OVMF.fd}/FV/";
};
};
};