diff --git a/hosts/common/disks/simple-efi.nix b/hosts/common/disks/simple-efi.nix deleted file mode 100644 index c072582..0000000 --- a/hosts/common/disks/simple-efi.nix +++ /dev/null @@ -1,44 +0,0 @@ -# NOTE: ... is needed because dikso passes diskoFile -{ - lib, - disk ? "/dev/vda", - withSwap ? false, - swapSize, - ... -}: -{ - disko.devices = { - disk = { - disk0 = { - type = "disk"; - device = disk; - content = { - type = "gpt"; - partitions = { - ESP = { - priority = 1; - name = "ESP"; - start = "1M"; - end = "512M"; - type = "EF00"; - content = { - type = "filesystem"; - format = "vfat"; - mountpoint = "/boot"; - mountOptions = [ "defaults" ]; - }; - }; - root = { - size = "100%"; - content = { - type = "filesystem"; - format = "ext4"; - mountpoint = "/"; - }; - }; - }; - }; - }; - }; - }; -}