AtomicData
Options
- services.atomic-server.enable
-
Whether to enable Enable Atomic Server.
- Type:
boolean
- Default:
false
- services.atomic-server.settings
-
Atomic Server configuration. Refer to https://docs.atomicdata.dev/atomicserver/installation#atomicserver-cli-options--env-vars for details on supported values. ATOMIC_CONFIG_DIR and ATOMIC_DATA_DIR are set automatically to work with NixOS Modules.
- Type:
unspecified value
- Default:
{ }
Examples
-
Basic configuration, mainly used for testing purposes.
{ ... }: { networking.firewall.allowedTCPPorts = [ 80 ]; services = { atomic-server = { enable = true; }; }; }