fix(module): default image to $NIX_CI_IMAGE

This commit is contained in:
technofab 2025-09-03 10:46:47 +02:00
parent 6cd05e503a
commit 4d824900d4
No known key found for this signature in database

View file

@ -59,7 +59,7 @@ in rec {
''; '';
type = types.str; type = types.str;
}; };
image = mkUnsetOption { image = mkOption {
description = '' description = ''
Container/OCI image to use for this job. Container/OCI image to use for this job.
@ -67,6 +67,7 @@ in rec {
Setting this will mess with Nix-GitLab-CI, so be careful and only use for non-nix jobs. Setting this will mess with Nix-GitLab-CI, so be careful and only use for non-nix jobs.
''; '';
type = types.str; type = types.str;
default = "$NIX_CI_IMAGE";
}; };
variables = mkUnsetOption { variables = mkUnsetOption {
type = types.attrsOf types.str; type = types.attrsOf types.str;