42 lines
926 B
Nix
42 lines
926 B
Nix
|
# USAGE in your configuration.nix.
|
||
|
# Update devices to match your hardware.
|
||
|
# {
|
||
|
# imports = [ ./disko-config.nix ];
|
||
|
# disko.devices.disk.main.device = "/dev/sda";
|
||
|
# }
|
||
|
{
|
||
|
config.disko.devices = {
|
||
|
disk = {
|
||
|
main = {
|
||
|
type = "disk";
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions = {
|
||
|
boot = {
|
||
|
size = "1M";
|
||
|
type = "EF02"; # for grub MBR
|
||
|
};
|
||
|
ESP = {
|
||
|
size = "1G";
|
||
|
type = "EF00";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "vfat";
|
||
|
mountpoint = "/boot";
|
||
|
};
|
||
|
};
|
||
|
root = {
|
||
|
size = "100%";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "ext4";
|
||
|
mountpoint = "/";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|