From ddd47a24dd60cd018700622b3f1ed70448779a3c Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Sat, 27 Sep 2025 01:59:07 -0500 Subject: [PATCH] Mount NFS shares to Jellyfin --- hosts/vm-jellyfin/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/vm-jellyfin/default.nix b/hosts/vm-jellyfin/default.nix index f815cef..808e5dc 100644 --- a/hosts/vm-jellyfin/default.nix +++ b/hosts/vm-jellyfin/default.nix @@ -30,17 +30,17 @@ fileSystems = { "/music" = { - device = "10.42.1.4:/volume1/music"; + device = "nas1.shire-zebra.ts.net:/mnt/all/music"; fsType = "nfs"; options = [ "ro" ]; }; "/photo" = { - device = "10.42.1.4:/volume1/photo"; + device = "nas1.shire-zebra.ts.net:/mnt/all/photos"; fsType = "nfs"; options = [ "ro" ]; }; "/video" = { - device = "10.42.1.4:/volume1/video/"; + device = "nas1.shire-zebra.ts.net:/mnt/all/video/"; fsType = "nfs"; options = [ "ro" ]; };