hydra-builds/default.nix
2022-02-05 14:33:02 +00:00

33 lines
817 B
Nix

{ ... }@args:
let
pkgs = (import <nixpkgs> {});
in
with pkgs; {
illustris = import ./by-maintainer.nix args;
homelab = {
inherit (nixosTests) jitsi-meet searx;
#inherit (nixosTests) hedgedoc jibri zfs;
};
dataPlatform = {
inherit (nixosTests) hadoop spark;
# https://github.com/NixOS/nixpkgs/pull/154004
#inherit (nixosTests) hadoop_3_2 hadoop2;
};
work = {
inherit (nixosTests) keepalived nginx vault;
sssd = { inherit (nixosTests) sssd sssd-ldap; };
# inherit (nixosTests) keycloak
};
#misc = {
# #prometheus = {
# # inherit (nixosTests) prometheus;
# # #inherit (nixosTests) prometheus-exporters;
# #};
# #inherit (nixosTests) kafka php postgresql signal-desktop;
#};
#disabled = {
# mysql = { inherit (nixosTests) mysql mysql-autobackup mysql-backup mysql-replication; };
#};
}