diff --git a/src/config.rs b/src/config.rs index 4b1d3dc..85eca05 100644 --- a/src/config.rs +++ b/src/config.rs @@ -102,7 +102,11 @@ pub(crate) fn configure() -> color_eyre::Result<(Configuration, Operation)> { }; let built = config - .add_source(config::Environment::with_prefix("PICTRS").separator("__")) + .add_source( + config::Environment::with_prefix("PICTRS") + .separator("__") + .try_parsing(true), + ) .add_source(config::Config::try_from(&config_format)?) .build()?;