forked from danio/nixos-matrix-modules
9 lines
327 B
Nix
9 lines
327 B
Nix
{ nixpkgs, pkgs, matrix-lib, ... }:
|
|
{
|
|
nginx-pipeline-eval = pkgs.callPackage ./nginx-pipeline { inherit nixpkgs matrix-lib; };
|
|
|
|
synapse-postgres = pkgs.testers.runNixOSTest ./synapse-postgres;
|
|
synapse-sqlite = pkgs.testers.runNixOSTest ./synapse-sqlite;
|
|
synapse-workers = pkgs.testers.runNixOSTest ./synapse-workers;
|
|
}
|