Matter Server: Difference between revisions
Appearance
Creates minimalist page for matter server config so it can be referenced from otbr's page |
Fix example code |
||
| Line 1: | Line 1: | ||
== Matter server == | == Matter server == | ||
you can enable the matter server with the following configuration<syntaxhighlight lang="nixos"> | you can enable the matter server with the following configuration<syntaxhighlight lang="nixos"> | ||
services.matter-server = { | |||
enable = true; | |||
# logLevel = "debug"; | |||
extraArgs = []; | |||
}; | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Latest revision as of 16:10, 25 August 2026
Matter server
you can enable the matter server with the following configuration
services.matter-server = {
enable = true;
# logLevel = "debug";
extraArgs = [];
};