diff --git a/terraform/hydra.nix b/terraform/hydra.nix index 74d133c..15388cf 100644 --- a/terraform/hydra.nix +++ b/terraform/hydra.nix @@ -32,6 +32,45 @@ in visible = true; }; + resource.hydra_jobset.k900-experiments = { + project = config.resource.hydra_project.forkos.name; + state = "enabled"; + visible = true; + name = "nixpkgs-experiments"; + type = "legacy"; + description = "experiments branch to test things for K900"; + + nix_expression = { + file = "pkgs/top-level/release.nix"; + input = "nixpkgs"; + }; + + check_interval = 0; + scheduling_shares = 3000; + keep_evaluations = 3; + + email_notifications = false; + + input = [ + { + name = "nixpkgs"; + type = "git"; + value = "https://cl.forkos.org/nixpkgs sandbox/k900/experiments"; + notify_committers = false; + } + { + name = "officialRelease"; + type = "boolean"; + value = false; + } + { + name = "supportedSystems"; + type = "nix"; + value = ''[ "x86_64-linux" ]''; + } + ]; + }; + resource.hydra_jobset.raito-nixos-rolling-small = { project = config.resource.hydra_project.forkos.name; state = "enabled";