From c0cab9eb1db6e22ef305119f3296275c2de2afdc Mon Sep 17 00:00:00 2001 From: Ahwx Date: Fri, 1 Aug 2025 13:17:48 +0200 Subject: [PATCH] feat: make gpt but properly now --- hosts/hazel/disko.nix | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/hosts/hazel/disko.nix b/hosts/hazel/disko.nix index 957609b..c95d152 100644 --- a/hosts/hazel/disko.nix +++ b/hosts/hazel/disko.nix @@ -9,17 +9,12 @@ device = "/dev/sda"; type = "disk"; content = { - type = "mbr"; + type = "gpt"; partitions = { - ESP = { - type = "EF00"; - size = "500M"; - content = { - type = "filesystem"; - format = "vfat"; - mountpoint = "/boot"; - mountOptions = [ "umask=0077" ]; - }; + boot = { + size = "1M"; + type = "EF02"; + priority = 1; }; root = { size = "100%";