From f73bfc63be823ea6b4034a1293c38a852cb7bb02 Mon Sep 17 00:00:00 2001 From: yukkop Date: Sat, 20 Jun 2026 22:00:52 +0000 Subject: [PATCH] fix: `zomro`: reboot --- nixos/system/bfs.poland.xray/bfs.poland.xray.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nixos/system/bfs.poland.xray/bfs.poland.xray.nix b/nixos/system/bfs.poland.xray/bfs.poland.xray.nix index a727fd1f..77f6cdab 100644 --- a/nixos/system/bfs.poland.xray/bfs.poland.xray.nix +++ b/nixos/system/bfs.poland.xray/bfs.poland.xray.nix @@ -72,6 +72,14 @@ in { hostName = jitsiHost; }; + # NOTE(yukkop): disk was provisioned outside disko, so the expected partition + # label does not exist. Pin root to the live filesystem UUID so stage 1 can + # mount `/` reliably. + fileSystems."/" = lib.mkForce { + device = "/dev/disk/by-uuid/06b48ef1-a1eb-428d-821c-90c96a624542"; + fsType = "ext4"; + }; + security.acme = { acceptTerms = true; defaults.email = "security@bfs.band";