infrastructure/machines/web01/matterbridge.nix

11 lines
190 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.autoMatch = [ "matterbridge" ];
2023-12-08 14:53:13 +01:00
}