aboutsummaryrefslogtreecommitdiff
path: root/nix/modules/vda-simple.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/modules/vda-simple.nix')
-rw-r--r--nix/modules/vda-simple.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/nix/modules/vda-simple.nix b/nix/modules/vda-simple.nix
deleted file mode 100644
index 32fa28d..0000000
--- a/nix/modules/vda-simple.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- disko.devices = {
- disk = {
- main = {
- device = "/dev/vda";
- type = "disk";
- content = {
- type = "gpt";
- partitions = {
- boot = {
- size = "1M";
- type = "EF02";
- };
- root = {
- size = "100%";
- content = {
- type = "filesystem";
- format = "ext4";
- mountpoint = "/";
- };
- };
- };
- };
- };
- };
- };
-}