From 30145e16d8f01f8b8185c041adabfcf13d5530d1 Mon Sep 17 00:00:00 2001 From: Myned Date: Wed, 9 Oct 2024 17:38:54 -0500 Subject: [PATCH] matrix: migrate to myne Signed-off-by: Myned --- options/custom/services/matrix-conduit.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/options/custom/services/matrix-conduit.nix b/options/custom/services/matrix-conduit.nix index 63b990a..a6eaa0a 100644 --- a/options/custom/services/matrix-conduit.nix +++ b/options/custom/services/matrix-conduit.nix @@ -32,7 +32,7 @@ in { # Bind conduwuit service to media mount # https://github.com/NixOS/nixpkgs/blob/nixos-unstable/nixos/modules/services/matrix/conduit.nix#L113 systemd.services.conduit = let - mount = "mnt-remote-conduwuit.mount"; + mount = "mnt-local.mount"; in { after = [mount]; bindsTo = [mount]; @@ -47,10 +47,10 @@ in { }; }; - # Create bind mount to remote media in lieu of conduwuit.toml setting + # Create bind mount to local media in lieu of conduwuit.toml setting # https://nixos.wiki/wiki/Filesystems#Bind_mounts fileSystems."/var/lib/matrix-conduit/media" = { - device = "/mnt/remote/conduwuit/media"; + device = "/mnt/local/conduwuit/media"; fsType = "none"; options = ["bind"]; };