Fix matrix vm not booting due to mount options
This commit is contained in:
parent
2fd35881d3
commit
150fe9f106
|
@ -10,12 +10,12 @@
|
||||||
depends = [ "/mnt/data" ];
|
depends = [ "/mnt/data" ];
|
||||||
device = "/mnt/data/media_store";
|
device = "/mnt/data/media_store";
|
||||||
fsType = "none";
|
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}" = {
|
fileSystems."/var/lib/postgresql/${config.services.postgresql.package.psqlSchema}" = {
|
||||||
depends = [ "/mnt/data" ];
|
depends = [ "/mnt/data" ];
|
||||||
device = "/mnt/data/database";
|
device = "/mnt/data/database";
|
||||||
fsType = "none";
|
fsType = "none";
|
||||||
options = [ "bind" "X-mount.owner=postgres" "X-mount.group=postgres" ];
|
options = [ "bind" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue