From 24d38febf1c5758c9fe3b06eb9ac8d094f838d8c Mon Sep 17 00:00:00 2001 From: ManInDark <61268856+ManInDark@users.noreply.github.com> Date: Mon, 17 Nov 2025 10:39:27 +0100 Subject: [PATCH] FIX: add partition information --- README.md | 4 +++- disk_config/user.toml | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d10568..f3b9c5d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,9 @@ I've attached various links I used to learn about how all of this works below, t ## Build -A qcow image may be built by first calling `make oci` to build the oci image and then `make qcow` to turn it into a bootable qcow image. +A qcow image may be built by first calling `make oci` to build the oci image and then `make qcow` to turn it into a bootable qcow image. For hardware installation, I recommend the anaconda-iso variant. + +You should adapt user & disk settings in `disk_config/user.toml` before you build your own installation iso though. ## Links diff --git a/disk_config/user.toml b/disk_config/user.toml index 49ed791..837b867 100644 --- a/disk_config/user.toml +++ b/disk_config/user.toml @@ -2,3 +2,22 @@ name = "testuser" password = "test" groups = ["wheel"] + +[[customizations.disk.partitions]] +type = "plain" +fs_type = "swap" +minsize = "4 GiB" + +[[customizations.disk.partitions]] +type = "plain" +fs_type = "ext4" +label = "root" +minsize = "10 GiB" +mountpoint = "/" + +[[customizations.disk.partitions]] +type = "plain" +fs_type = "ext4" +label = "home" +minsize = "10 GiB" +mountpoint = "/home"