diff --git a/README.md b/README.md index 2eb7e2b..353775c 100644 --- a/README.md +++ b/README.md @@ -63,36 +63,36 @@ A simple disko configuration may look like this: ```nix { - disko.devices = { - disk = { -  my-disk = { -   device = "/dev/sda"; -   type = "disk"; -   content = { -    type = "gpt"; -    partitions = { -     ESP = { - type = "EF00"; -      size = "500M"; -      content = { -       type = "filesystem"; -       format = "vfat"; -       mountpoint = "/boot"; -      }; -     }; -     root = { -      size = "100%"; -      content = { -       type = "filesystem"; -       format = "ext4"; -       mountpoint = "/"; -      }; -     }; -    }; -   }; -  }; + disko.devices = { + disk = { + my-disk = { + device = "/dev/sda"; + type = "disk"; + content = { + type = "gpt"; + partitions = { + ESP = { + type = "EF00"; + size = "500M"; + content = { + type = "filesystem"; + format = "vfat"; + mountpoint = "/boot"; + }; + }; + root = { + size = "100%"; + content = { + type = "filesystem"; + format = "ext4"; + mountpoint = "/"; + }; + }; + }; + }; + }; + }; }; - }; } ```