From 0e9d702f80efe94b1327e91c559a4c00ccda8082 Mon Sep 17 00:00:00 2001 From: fi 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" ]; }; }; }