From 1301f985d8ffb5dba367ebbf844f911863e6c237 Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sun, 7 Jul 2024 23:41:39 -0400 Subject: [PATCH] flip back to main repo Signed-off-by: ahuston-0 --- hydra/jobsets.nix | 19 +++++++++++++++++-- hydra/spec.json | 8 ++++---- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/hydra/jobsets.nix b/hydra/jobsets.nix index c4f6fdb..c92ee39 100644 --- a/hydra/jobsets.nix +++ b/hydra/jobsets.nix @@ -1,4 +1,10 @@ -{ pulls, branches, ... }: +{ + pulls, + branches, + nixexpr, + nixpkgs, + ... +}: let # create the json spec for the jobset makeSpec = @@ -19,7 +25,7 @@ let prs = readJSONFile pulls; refs = readJSONFile branches; - repo = "ahuston-0/nix-dotfiles-hydra"; + repo = "RAD-Development/nix-dotfiles"; # template for creating a job makeJob = @@ -42,6 +48,15 @@ let checkinterval = 300; # every 6 months enableemail = false; emailoverride = ""; + inputs = { + inherit + nixexpr + nixpkgs + pulls + branches + ; + # rev = pkgs.runCommand "rev" {} ''echo "${src.rev}" > $out''; + }; }; # Create a hydra job for a branch diff --git a/hydra/spec.json b/hydra/spec.json index 3ea86ea..820f346 100644 --- a/hydra/spec.json +++ b/hydra/spec.json @@ -12,23 +12,23 @@ "type": 0, "inputs": { "nixexpr": { - "value": "https://github.com/ahuston-0/nix-dotfiles-hydra main", + "value": "https://github.com/RAD-Development/nix-dotfiles main", "type": "git", "emailresponsible": false }, "nixpkgs": { - "value": "https://github.com/NixOS/nixpkgs nixos-unstable-small", + "value": "https://github.com/NixOS/nixpkgs nixos-unstable", "type": "git", "emailresponsible": false }, "pulls": { "type": "githubpulls", - "value": "ahuston-0 nix-dotfiles-hydra", + "value": "RAD-Development nix-dotfiles", "emailresponsible": false }, "branches": { "type": "github_refs", - "value": "ahuston-0 nix-dotfiles-hydra heads -", + "value": "RAD-Development nix-dotfiles heads -", "emailresponsible": false } }