diff --git a/hosts/server/hardware-configuration.nix b/hosts/server/hardware-configuration.nix index df38fc9..9163186 100644 --- a/hosts/server/hardware-configuration.nix +++ b/hosts/server/hardware-configuration.nix @@ -92,6 +92,15 @@ "datacow" ]; }; + "/boot" = { + device = "/dev/disk/by-uuid/c574cb53-dc40-46db-beff-0fe8a4787156"; + fsType = "ext4"; + options = [ "nofail" ]; + }; + "/boot/efi" = { + device = "/dev/disk/by-uuid/CBE7-5DEB"; + fsType = "vfat"; + }; "/srv/pool" = { device = "/dev/disk/by-uuid/1e7cf787-e34d-4e3e-ac3c-0c07309dbd34"; fsType = "btrfs"; @@ -102,15 +111,7 @@ "commit=120" "datacow" ]; - }; - "/boot" = { - device = "/dev/disk/by-uuid/c574cb53-dc40-46db-beff-0fe8a4787156"; - fsType = "ext4"; - options = [ "nofail" ]; - }; - "/boot/efi" = { - device = "/dev/disk/by-uuid/CBE7-5DEB"; - fsType = "vfat"; + depends = [ "/boot/efi" ]; }; "/var/lib/nextcloud/data" = { device = "/srv/pool/nextcloud";