infrastructure/machines/web01/matterbridge.nix

13 lines
223 B
Nix
Raw Normal View History

2023-12-08 14:53:13 +01:00
{ config, ... }:
{
services.matterbridge = {
enable = true;
configPath = config.age.secrets."matterbridge-config_file".path;
};
age-secrets.matches."^matterbridge-.*$" = {
owner = "matterbridge";
};
2023-12-08 14:53:13 +01:00
}