{ nixpkgs, ... }: let pkgs = import nixpkgs {}; jobsets = { main = { enabled = 1; hidden = false; description = "main branch"; nixexprinput = "nixrc"; nixexprpath = "hydra/default.nix"; checkinterval = 300; schedulingshares = 100; enableemail = false; emailoverride = ""; keepnr = 1; inputs = { nixrc = { type = "git"; value = "https://git.exotic.sh/pub/sefidel/nixrc main"; emailresponsible = false; }; nixpkgs = { type = "git"; value = "https://github.com/NixOS/nixpkgs.git nixos-unstable"; emailresponsible = false; }; }; }; }; in { jobsets = pkgs.writeText "jobsets.json" (builtins.toJSON jobsets); }