Jump to content

Matter Server: Difference between revisions

From Official NixOS Wiki
Jeantil (talk | contribs)
Creates minimalist page for matter server config so it can be referenced from otbr's page
 
Sandro (talk | contribs)
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">
    matter-server = {
services.matter-server = {
      enable = true;
  enable = true;
      # logLevel = "debug";
  # logLevel = "debug";
      extraArgs = [];
  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 = [];
};