From eb191a911a039307fccafe24891dae3ac54da0a2 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Tue, 6 May 2025 16:32:48 +0000 Subject: [PATCH] manatee: Add `cameras` 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 076eb67..7950f61 100644 --- a/hosts/manatee/disk-config.nix +++ b/hosts/manatee/disk-config.nix @@ -129,6 +129,12 @@ mountpoint = "/mnt/media"; options.mountpoint = "legacy"; # otherwise we get a race between systemd and zfs; https://github.com/nix-community/disko/issues/214 }; + + cameras = { + type = "zfs_fs"; + mountpoint = "/mnt/cameras"; + options.mountpoint = "legacy"; # otherwise we get a race between systemd and zfs; https://github.com/nix-community/disko/issues/214 + }; }; }; };