feat(module): add default for Web.Environment
Alan Pearce alan@alanpearce.eu
Tue, 14 May 2024 17:38:34 +0200
1 files changed, 6 insertions(+), 0 deletions(-)
jump to
M nix/modules/default.nix → nix/modules/default.nix
@@ -109,6 +109,12 @@ description = "The base URL that searchix will be served on."; default = "http://localhost:3000"; }; + environment = mkOption { + type = with types; either "production" "development"; + description = "Environment name for logging"; + default = "production"; + }; + sentryDSN = mkOption { type = types.str; description = "Optionally enable sentry to track errors.";