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