10 lines
217 B
Nix
10 lines
217 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.matterbridge = {
|
|
enable = true;
|
|
configPath = config.age.secrets."matterbridge-config_file".path;
|
|
};
|
|
|
|
age-secrets.matches."^matterbridge-.*$" = { owner = "matterbridge"; };
|
|
}
|