diff --git a/configurations/disko/pub-vds.nix b/configurations/disko/pub-vds.nix deleted file mode 100644 index f097a04..0000000 --- a/configurations/disko/pub-vds.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ - disko.devices = { - disk = { - main = { - device = "/dev/vda"; - type = "disk"; - content = { - type = "gpt"; - partitions = { - boot = { - type = "EF02"; - size = "1M"; - }; - root = { - size = "100%"; - content = { - type = "filesystem"; - format = "ext4"; - mountpoint = "/"; - }; - }; - swap = { - size = "256M"; - content = { - type = "swap"; - }; - }; - }; - }; - }; - }; - }; -}