fix: repository name must be lowercase

add some more job options
This commit is contained in:
technofab 2024-01-14 18:02:05 +01:00
parent f3485837ce
commit 77fded1940

View file

@ -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; {