mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
24 lines
446 B
Nix
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 = "/";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|