feat(module): add default for Web.Environment
1 file 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.";