services.fider.environment
NixOS option
Environment variables to set for the service. Secrets should be specified using environmentFiles. Refer to https://github.com/getfider/fider/blob/stable/.example.env and https://github.com/getfider/fider/blob/stable/app/pkg/env/env.go for available options.
type: attribute set of stringDefault
{ }Example
declared in: nixos/modules/services/web-apps/fider.nixView source on NixOS/nixpkgs →{
BASE_URL = "https://fider.example.com";
BLOB_STORAGE = "fs";
EMAIL = "smtp";
EMAIL_NOREPLY = "fider@example.com";
EMAIL_SMTP_HOST = "mail.example.com";
EMAIL_SMTP_PORT = "587";
EMAIL_SMTP_USERNAME = "fider@example.com";
PORT = "31213";
}