diff --git a/examples/disko.nix b/examples/disko.nix deleted file mode 100644 index d3c6768..0000000 --- a/examples/disko.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ - disko.devices.disk.sda = { - type = "disk"; - device = "/dev/sda"; - content = { - type = "gpt"; - partitions = { - boot = { - name = "grub"; - size = "1M"; - type = "EF02"; - }; - esp = { - name = "ESP"; - type = "EF00"; - size = "500M"; - content = { - type = "filesystem"; - format = "vfat"; - mountpoint = "/boot"; - }; - }; - root = { - name = "root"; - size = "100%"; - content = { - type = "filesystem"; - format = "ext4"; - mountpoint = "/"; - }; - }; - }; - }; - }; -}