update
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
JMARyA 2025-01-10 09:45:21 +01:00
parent 05cf6cf9da
commit f235867600
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
10 changed files with 110 additions and 4 deletions

View file

@ -87,6 +87,15 @@ pub struct GeneralConfig {
pub root_password: Option<String>,
// Enable Bluetooth
pub bluetooth: Option<bool>,
/// Install Video Driver
pub gpu_driver: Option<GPUVendor>
}
#[derive(Debug, Clone, Deserialize)]
pub enum GPUVendor {
AMD,
NVIDIA,
INTEL
}
#[derive(Debug, Clone, Deserialize)]