diff --git a/flakeModule.nix b/flakeModule.nix index a528dcd..f68fa02 100644 --- a/flakeModule.nix +++ b/flakeModule.nix @@ -19,7 +19,7 @@ subType { default-nix-image = mkOption { type = types.str; - default = "registry.gitlab.com/TECHNOFAB/nix-gitlab-ci/nix-ci:latest"; + default = "registry.gitlab.com/technofab/nix-gitlab-ci/nix-ci:latest"; description = "The image to use on nix jobs"; }; nix-jobs-per-default = mkOption { @@ -71,6 +71,18 @@ type = types.nullOr types.str; default = null; }; + allow_failure = mkOption { + type = types.bool; + default = false; + }; + needs = mkOption { + type = types.nullOr (types.listOf types.str); + default = null; + }; + rules = mkOption { + type = types.attrs; + default = {}; + }; }; in { options = with lib; {