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.
16 lines
398 B
Rust
16 lines
398 B
Rust
2 years ago
|
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,
|
||
|
}
|