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