17 lines
277 B
Nix
17 lines
277 B
Nix
{ ... }:
|
|
let
|
|
module = ./default.nix;
|
|
in
|
|
{
|
|
clan.modules.matrix-synapse = module;
|
|
|
|
perSystem =
|
|
{ ... }:
|
|
{
|
|
clan.nixosTests.matrix-synapse = {
|
|
imports = [ ./tests/vm/default.nix ];
|
|
clan.modules."@clan/matrix-synapse" = module;
|
|
};
|
|
};
|
|
}
|