refactor + firewall

This commit is contained in:
JMARyA 2025-01-10 13:19:39 +01:00
parent f235867600
commit dfa3a34484
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
17 changed files with 200 additions and 123 deletions

View file

@ -88,14 +88,16 @@ pub struct GeneralConfig {
// Enable Bluetooth
pub bluetooth: Option<bool>,
/// Install Video Driver
pub gpu_driver: Option<GPUVendor>
pub gpu_driver: Option<GPUVendor>,
// Eanble firewall
pub firewall: Option<bool>,
}
#[derive(Debug, Clone, Deserialize)]
pub enum GPUVendor {
AMD,
NVIDIA,
INTEL
INTEL,
}
#[derive(Debug, Clone, Deserialize)]