From 6db6c605a3c16ec90a8141b77fd35c0b11584a15 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sun, 18 May 2025 16:32:46 +0200 Subject: [PATCH] manatee: Add `sync` ZFS dataset --- hosts/manatee/disk-config.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/manatee/disk-config.nix b/hosts/manatee/disk-config.nix index 53e43b4..9c2916c 100644 --- a/hosts/manatee/disk-config.nix +++ b/hosts/manatee/disk-config.nix @@ -172,6 +172,12 @@ mountpoint = "/mnt/cameras"; options.mountpoint = "legacy"; # otherwise we get a race between systemd and zfs; https://github.com/nix-community/disko/issues/214 }; + + sync = { + type = "zfs_fs"; + mountpoint = "/mnt/sync"; + options.mountpoint = "legacy"; # otherwise we get a race between systemd and zfs; https://github.com/nix-community/disko/issues/214 + }; }; }; };