diff --git a/config/hosts/matrix/hardware-configuration.nix b/config/hosts/matrix/hardware-configuration.nix index d014f39..fbc56c9 100644 --- a/config/hosts/matrix/hardware-configuration.nix +++ b/config/hosts/matrix/hardware-configuration.nix @@ -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" ]; }; }