netboot.nix/pkgs/disko/example/negative-size.nix
2024-12-29 21:35:58 -05:00

24 lines
446 B
Nix

{
disko.devices = {
disk = {
disk0 = {
device = "/dev/disk/by-id/ata-disk0";
type = "disk";
content = {
type = "gpt";
partitions = {
nix = {
end = "-10M";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}