summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--types.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/types.nix b/types.nix
index 46c114d..555b483 100644
--- a/types.nix
+++ b/types.nix
@@ -764,6 +764,7 @@ rec {
fileSystems.${config.mountpoint} = {
device = config.name;
fsType = "zfs";
+ options = lib.optional ((config.options.mountpoint or "") != "legacy") "zfsutil";
};
});
};
@@ -852,6 +853,7 @@ rec {
fileSystems.${config.mountpoint} = {
device = "${zpool}/${config.name}";
fsType = "zfs";
+ options = lib.optional ((config.options.mountpoint or "") != "legacy") "zfsutil";
};
};
};