From f533f23fd4039b3cfde7c628283cac857b987113 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Fri, 4 Apr 2025 04:08:43 +0000 Subject: [PATCH] backyard: bind mount to /pool ro --- machine/backyard/filesystems.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine/backyard/filesystems.nix b/machine/backyard/filesystems.nix index 1aab849..8a2a959 100644 --- a/machine/backyard/filesystems.nix +++ b/machine/backyard/filesystems.nix @@ -1,7 +1,7 @@ { config, lib, pkgs, modulesPath, ... }: let zfsMount = dev: { device = dev; fsType = "zfs"; options = [ "nofail" ]; }; - bindMount = dev: { device = dev; options = [ "bind" "nofail" ]; }; + bindMount = dev: { device = dev; options = [ "bind" "nofail" "ro" ]; }; in { fileSystems = {