17 lines
315 B
Nix
17 lines
315 B
Nix
# SPDX-FileCopyrightText: 2021-2023 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{
|
|
imports = [
|
|
./synapse.nix
|
|
./mautrix-whatsapp.nix
|
|
./go-neb.nix
|
|
];
|
|
|
|
# required by mautrix-whatsapp and go-neb
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"olm-3.2.16"
|
|
];
|
|
}
|