6 lines
203 B
Nix
6 lines
203 B
Nix
{ ... }: {
|
|
services.matterbridge.enable = true;
|
|
services.matterbridge.configPath = "/run/keys/matterbridge.toml";
|
|
# Allow to access /run/keys
|
|
users.users.matterbridge.extraGroups = [ "keys" ];
|
|
}
|