From 5b8d09f2d7ebb7a1670c695af5761353d5b76d7e Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Sun, 7 Sep 2025 20:48:46 -0700 Subject: create drive abstractions and entry points for disko --- nix/disko/vda-simple.nix | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 nix/disko/vda-simple.nix (limited to 'nix/disko/vda-simple.nix') diff --git a/nix/disko/vda-simple.nix b/nix/disko/vda-simple.nix deleted file mode 100644 index 3ae1d34..0000000 --- a/nix/disko/vda-simple.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ - disko.devices = { - disk = { - main = { - device = "/dev/vda"; - type = "disk"; - content = { - type = "gpt"; - partitions = { - boot = { - size = "1M"; - type = "EF02"; - }; - root = { - label = "disk-main-root"; - size = "100%"; - content = { - type = "filesystem"; - format = "ext4"; - mountpoint = "/"; - }; - }; - }; - }; - }; - }; - }; -} -- cgit v1.3