mirror of
https://gitlab.com/TECHNOFAB/nix-gitlab-ci.git
synced 2025-12-12 02:00:13 +01:00
fix(module): default image to $NIX_CI_IMAGE
This commit is contained in:
parent
6cd05e503a
commit
4d824900d4
1 changed files with 2 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ in rec {
|
|||
'';
|
||||
type = types.str;
|
||||
};
|
||||
image = mkUnsetOption {
|
||||
image = mkOption {
|
||||
description = ''
|
||||
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.
|
||||
'';
|
||||
type = types.str;
|
||||
default = "$NIX_CI_IMAGE";
|
||||
};
|
||||
variables = mkUnsetOption {
|
||||
type = types.attrsOf types.str;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue