mirror of
https://github.com/philmmanjaro/alma.git
synced 2025-07-26 06:59:28 +02:00
23 lines
432 B
Rust
23 lines
432 B
Rust
pub const BOOT_PARTITION_INDEX: u8 = 1;
|
|
pub const ROOT_PARTITION_INDEX: u8 = 3;
|
|
|
|
pub static JOURNALD_CONF: &str = "
|
|
[Journal]
|
|
Storage=volatile
|
|
SystemMaxUse=16M
|
|
";
|
|
|
|
pub const BASE_PACKAGES: [&str; 9] = [
|
|
"base",
|
|
"linux",
|
|
"linux-firmware",
|
|
"grub",
|
|
"efibootmgr",
|
|
"intel-ucode",
|
|
"networkmanager",
|
|
"broadcom-wl",
|
|
"amd-ucode",
|
|
];
|
|
|
|
pub const AUR_DEPENDENCIES: [&str; 3] = ["base-devel", "git", "sudo"];
|