services.turborepo-remote-cache.environment

NixOS option

Environment variables to set. Turborepo-remote-cache is configured through the use of environment variables. The available configuration options can be found in the documentation. Note that all environment variables set through this configuration parameter will be readable by anyone with access to the host machine. Therefore, sensitive information like TURBO_TOKEN should never be set using this configuration option, but should instead use services.turborepo-remote-cache.environmentFile. See the documentation for that option for more information. Any environment variables specified in the services.turborepo-remote-cache.environmentFile will supersede environment variables specified in this option.

type: attribute set of (null or boolean or signed integer or string)
Default
{ }
Example
{
  NODE_ENV = "production";
  PORT = 8080;
}
declared in: nixos/modules/services/development/turborepo-remote-cache.nixView source on NixOS/nixpkgs →