From bd4dab95b023eb1e1bcdbfe34231455eace9b1f0 Mon Sep 17 00:00:00 2001 From: yuri Date: Tue, 5 Dec 2023 04:17:09 +0100 Subject: [PATCH] Fix paperless vm not booting due to mount options --- config/hosts/paperless/hardware-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/hosts/paperless/hardware-configuration.nix b/config/hosts/paperless/hardware-configuration.nix index 69684c1..17b9b66 100644 --- a/config/hosts/paperless/hardware-configuration.nix +++ b/config/hosts/paperless/hardware-configuration.nix @@ -24,7 +24,7 @@ depends = [ "/mnt/data" ]; device = "/mnt/data/paperless"; fsType = "none"; - options = [ "bind" "X-mount.owner=paperless" "X-mount.group=paperless" ]; + options = [ "bind" ]; }; }; }