summaryrefslogtreecommitdiff
path: root/default.nix
blob: 52b67b99b3c4ff3b8c86e361512704350985a7bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ nixpkgs ? (import <nixpkgs> {}), declInput ? null, ...}:

{
  jobsets = nixpkgs.writeText "jobset-spec.json" (builtins.toJSON {
    enabled = 1;
    hidden = false;
    description = "orbekk's NixOS configuration";
    nixexprinput = "src";
    nixexprpath = "release.nix";
    checkinterval = 300;
    schedulingshares = 100;
    enableemail = false;
    emailoverride = "";
    keepnr = 0;
    inputs = let gitSrc = url: { type = "git"; value = url; }; in {
      src = gitSrc "https://git.orbekk.com/git/nixos-config.git";
      nixpkgs = gitSrc "https://github.com/NixOS/nixpkgs-channels.git";
    };
  });
}