disko/example/lvm-sizes-sort.nix

64 lines
1.4 KiB
Nix
Raw Normal View History

{
2023-05-15 17:16:40 +03:00
disko.devices = {
disk = {
one = {
type = "disk";
device = "/dev/disk/by-id/ata-VMware_Virtual_SATA_CDRW_Drive_00000000000000000001";
2023-05-15 17:16:40 +03:00
content = {
type = "gpt";
partitions = {
boot = {
size = "500M";
2023-07-20 19:41:35 +03:00
type = "EF00";
2023-05-15 17:16:40 +03:00
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
primary = {
size = "100%";
2023-05-15 17:16:40 +03:00
content = {
type = "lvm_pv";
vg = "pool";
};
};
};
2023-05-15 17:16:40 +03:00
};
};
};
lvm_vg = {
pool = {
type = "lvm_vg";
lvs = {
aaa = {
size = "1M";
};
zzz = {
size = "1M";
};
root = {
size = "100M";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
mountOptions = [
"defaults"
];
};
};
home = {
size = "100%FREE";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/home";
};
};
};
};
};
};
}