nix-config/lib/hail.nix

10 lines
259 B
Nix
Raw Normal View History

{ config, ... }: {
services.hail = {
enable = true;
2019-11-30 18:38:32 +01:00
hydraJobUri = "https://hydra.hq.c3d2.de/job/c3d2/hail/${config.networking.hostName}-activator";
# Only builds > 19.09
package = (import <nixpkgs-unstable> {}).haskellPackages.hail;
};
}