From 07a5276e404f5f5caf4ac712acae0c08bc6f0ade Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Fri, 24 Apr 2026 01:47:25 -0400 Subject: [PATCH] patiodeck: fix disko partition order (fixed-size before 100%) --- hosts/patiodeck/disk.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/hosts/patiodeck/disk.nix b/hosts/patiodeck/disk.nix index 4c091c1..0ed0dea 100644 --- a/hosts/patiodeck/disk.nix +++ b/hosts/patiodeck/disk.nix @@ -15,14 +15,6 @@ mountpoint = "/boot"; }; }; - persistent = { - size = "100%"; - content = { - type = "filesystem"; - format = "f2fs"; - mountpoint = "/persistent"; - }; - }; nix = { size = "200G"; content = { @@ -31,6 +23,14 @@ mountpoint = "/nix"; }; }; + persistent = { + size = "100%"; + content = { + type = "filesystem"; + format = "f2fs"; + mountpoint = "/persistent"; + }; + }; }; }; };