alma/src/constants.rs
Philip Müller 5b2e5d75ec
Update constants.rs
- use correct extramodule for LTS kernel
2020-07-02 13:47:21 +02:00

23 lines
442 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",
"linux54",
"linux54-broadcom-wl",
"linux-firmware",
"grub",
"efibootmgr",
"intel-ucode",
"amd-ucode",
"networkmanager",
];
pub const AUR_DEPENDENCIES: [&str; 3] = ["base-devel", "git", "sudo"];