From d1106b9a7ded485db5febed8e74b398d16e34d11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 14 Sep 2023 06:43:57 +0200 Subject: [PATCH] drop disko config --- examples/disko.nix | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 examples/disko.nix 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 = "/"; - }; - }; - }; - }; - }; -}