summaryrefslogtreecommitdiff
path: root/nix/modules/matterbridge.nix
blob: 85a229545e0d75c2003506c3f49fba4ccde18084 (plain)
1
2
3
4
5
6
7
{ lib, config, ... }:
{
  services.matterbridge = {
    enable = lib.mkDefault config.monorepo.profiles.server.enable;
    configPath = "${config.sops.templates.matterbridge.path}";
  };
}