From f974f2c13e246cdc79de73cd0420d3bbef55193b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Tue, 26 Aug 2025 20:02:30 +0200 Subject: [PATCH] fix: mounts --- machines/moritz-server/yottamaster.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/machines/moritz-server/yottamaster.nix b/machines/moritz-server/yottamaster.nix index 7a4d090..ccd4fa6 100644 --- a/machines/moritz-server/yottamaster.nix +++ b/machines/moritz-server/yottamaster.nix @@ -43,17 +43,22 @@ in { rootFsOptions = { compression = "zstd"; "com.sun:auto-snapshot" = "false"; + "canmount" = "noauto"; }; + mountpoint = null; datasets = { music = { type = "zfs_fs"; mountpoint = "/data/music"; options."com.sun:auto-snapshot" = "true"; + options."canmount" = "noauto"; + }; nixarr = { type = "zfs_fs"; mountpoint = "/data/nixarr"; options."com.sun:auto-snapshot" = "true"; + options."canmount" = "noauto"; }; }; };