mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
35 lines
733 B
Nix
35 lines
733 B
Nix
|
{
|
||
|
disko.devices = {
|
||
|
disk = {
|
||
|
main = {
|
||
|
device = "/dev/disk/by-path/pci-0000:02:00.0-nvme-1";
|
||
|
type = "disk";
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions = {
|
||
|
ESP = {
|
||
|
end = "500M";
|
||
|
type = "EF00";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "vfat";
|
||
|
mountpoint = "/boot";
|
||
|
};
|
||
|
};
|
||
|
root = {
|
||
|
name = "root";
|
||
|
end = "-0";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "f2fs";
|
||
|
mountpoint = "/";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|