diff --git a/crates/rugpi-ctrl/src/config.rs b/crates/rugpi-ctrl/src/config.rs index c5e873c..afb8d58 100644 --- a/crates/rugpi-ctrl/src/config.rs +++ b/crates/rugpi-ctrl/src/config.rs @@ -5,6 +5,8 @@ use serde::{Deserialize, Serialize}; pub struct Config { /// The size of the system partition(s). pub system_size: Option, + /// Indicates what to do with the overlay. + #[serde(default)] pub overlay: Overlay, }