This commit is contained in:
JMARyA 2024-12-27 22:51:32 +01:00
parent d6042bc2e1
commit 44a88c9584
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
6 changed files with 228 additions and 167 deletions

View file

@ -23,10 +23,14 @@ pub struct GeneralConfig {
pub encryption: bool,
/// Presets
pub mode: InstallMode,
// System locale
/// System locale
pub locale: String,
// Packages to install
/// Packages to install
pub pkg: Vec<String>,
/// Enable libvirt
pub virtualization: bool,
/// Enable docker
pub docker: bool,
}
#[derive(Debug, Deserialize)]