fix: add new partition types and stuff to disko lib

This commit is contained in:
oddlama 2024-03-02 14:02:40 +01:00
parent c0ecafbd7c
commit 34ba92f057
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A

View file

@ -17,13 +17,12 @@ _inputs: final: prev: {
gpt = {
partGrub = start: end: {
inherit start end;
part-type = "primary";
flags = ["bios_grub"];
type = "ef02";
};
partEfi = start: end: {
inherit start end;
fs-type = "fat32";
bootable = true;
type = "ef00";
hybrid.mbrBootableFlag = true;
content = {
type = "filesystem";
format = "vfat";
@ -32,7 +31,6 @@ _inputs: final: prev: {
};
partSwap = start: end: {
inherit start end;
fs-type = "linux-swap";
content = {
type = "swap";
randomEncryption = true;