From 70093647542b9a22468c45150b421d73a5270d8c Mon Sep 17 00:00:00 2001 From: fi Date: Wed, 20 Nov 2024 05:46:40 +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" ]; }; }; }