1
1
mirror of https://github.com/dali99/nixos-matrix-modules.git synced 2025-09-15 09:35:03 +02:00

introduce matrix-lib

This commit is contained in:
2023-01-20 07:53:01 +01:00
parent 5ef8873997
commit 07e95170e8
5 changed files with 66 additions and 21 deletions

View File

@@ -1,9 +1,14 @@
{
description = "NixOS modules for matrix related services";
outputs = { self }: {
inputs = {
nixpkgs-lib.url = github:nix-community/nixpkgs.lib;
};
outputs = { self, nixpkgs-lib }: {
nixosModules = {
synapse = import ./synapse-module;
synapse = import ./synapse-module { matrix-lib = self.lib; };
};
lib = import ./lib.nix { lib = nixpkgs-lib.lib; };
};
}