Fix matrix vm not booting due to mount options

This commit is contained in:
fi 2024-11-20 05:46:40 +01:00
parent 1fadf39b64
commit e9ab073be8

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" ];
};
}