disko: Create build and games logical volumes

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2024-08-03 16:35:57 +03:00
parent 8a7c86893c
commit e3153ed581
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D

View file

@ -56,4 +56,20 @@
mountpoint = "/mnt/storage";
};
};
disko.devices.lvm_vg.VolGroup0.lvs.build = {
size = "20G";
content = {
type = "filesystem";
format = "btrfs";
mountpoint = "/mnt/build";
};
};
disko.devices.lvm_vg.VolGroup0.lvs.games = {
size = "20G";
content = {
type = "filesystem";
format = "btrfs";
mountpoint = "/mnt/games";
};
};
}