From 2cb0443daa6e3b5c9233ea77e27b7a1074e6a38f Mon Sep 17 00:00:00 2001 From: oqyude Date: Sat, 25 Oct 2025 09:56:45 +0300 Subject: [PATCH] 123 --- configurations/disko/pub-vds.nix | 33 -------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 configurations/disko/pub-vds.nix 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"; - }; - }; - }; - }; - }; - }; - }; -}