From eb276e5c1e481d489af6f82b00ca8563800b182f Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Mon, 26 Aug 2024 10:07:34 +0700 Subject: [PATCH] homeserver: mounted syncthing music folder to public --- hardware-configuration/homeserver.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hardware-configuration/homeserver.nix b/hardware-configuration/homeserver.nix index 1c51d7b..a5f5026 100644 --- a/hardware-configuration/homeserver.nix +++ b/hardware-configuration/homeserver.nix @@ -31,6 +31,16 @@ device = "/dev/disk/by-label/WD_RED_4T_1"; fsType = "ext4"; }; + fileSystems."/nas/public/Music" = { + device = "/nas/Syncthing/Sync/Music"; + fsType = "auto"; + options = [ + "defaults" + "nofail" + "nobootwait" + "bind" + ]; + }; swapDevices = [ ];