You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tourmaline/src/config.rs

16 lines
398 B
Rust

use serde::Serialize;
use crate::tasks::{
BootloaderConfig, DesktopConfig, LocaleConfig, NetworkConfig, PartitionsConfig, UsersConfig,
};
#[derive(Clone, Debug, Serialize)]
pub struct Config {
pub local: LocaleConfig,
pub network: NetworkConfig,
pub partitions: PartitionsConfig,
pub bootloader: BootloaderConfig,
pub desktop: DesktopConfig,
pub users: UsersConfig,
}