forked from DGNum/infrastructure
12 lines
223 B
Nix
12 lines
223 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.matterbridge = {
|
|
enable = true;
|
|
configPath = config.age.secrets."matterbridge-config_file".path;
|
|
};
|
|
|
|
age-secrets.matches."^matterbridge-.*$" = {
|
|
owner = "matterbridge";
|
|
};
|
|
}
|