From 00b1fc5fd3260d457cadc7059d50ab630e46cdeb Mon Sep 17 00:00:00 2001 From: yuri Date: Tue, 5 Dec 2023 02:23:12 +0100 Subject: [PATCH] Fix mastodon vm not booting due to mount options --- config/hosts/mastodon/configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/hosts/mastodon/configuration.nix b/config/hosts/mastodon/configuration.nix index aad67b7..6ca384d 100644 --- a/config/hosts/mastodon/configuration.nix +++ b/config/hosts/mastodon/configuration.nix @@ -23,19 +23,19 @@ depends = [ "/mnt/data" ]; device = "/mnt/data/mastodon"; fsType = "none"; - options = [ "bind" "X-mount.owner=mastodon" "X-mount.group=mastodon" ]; + options = [ "bind" ]; }; "/var/lib/postgresql" = { depends = [ "/mnt/data" ]; device = "/mnt/data/postgresql"; fsType = "none"; - options = [ "bind" "X-mount.owner=postgres" "X-mount.group=postgres" ]; + options = [ "bind" ]; }; "/var/lib/private/opensearch/data" = { depends = [ "/mnt/data" ]; device = "/mnt/data/opensearch"; fsType = "none"; - options = [ "bind" "X-mount.owner=opensearch" "X-mount.group=opensearch" ]; + options = [ "bind" ]; }; };