MyNixOS website logo
option

services.firezone.server.provision.accounts

All accounts to provision. The attribute name specified here will become the account slug. By using "{file:/path/to/file}" as a string value anywhere in these settings, the provisioning script will replace that value with the content of the given file at runtime.

Please refer to the Firezone source code for all available properties.

Declarations
Type
attribute set of (JSON value)
Default
{ }
Example
{
  main = {
    features = {
      rest_api = false;
    };
    metadata = {
      stripe = {
        billing_email = "org@myorg.example.com";
      };
    };
    name = "My Account / Organization";
  };
}
Sign in to create a configuration using this setting.