Fix matrix vm not booting due to mount options

This commit is contained in:
yuri 2023-12-05 04:16:44 +01:00
parent 01efa471ae
commit 0342528ca0

View file

@ -10,12 +10,12 @@
depends = [ "/mnt/data" ];
device = "/mnt/data/media_store";
fsType = "none";
options = [ "bind" "X-mount.owner=matrix-synapse" "X-mount.group=matrix-synapse" ];
options = [ "bind" ];
};
fileSystems."/var/lib/postgresql/${config.services.postgresql.package.psqlSchema}" = {
depends = [ "/mnt/data" ];
device = "/mnt/data/database";
fsType = "none";
options = [ "bind" "X-mount.owner=postgres" "X-mount.group=postgres" ];
options = [ "bind" ];
};
}