Skip to content

Commit 5e08b31

Browse files
committed
feat(hosts/nixarr): public smb music share
1 parent f8e828f commit 5e08b31

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

hosts/server/nixarr/default.nix

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,21 @@
247247
vpnNamespace = "wg";
248248
};
249249

250-
services.flaresolverr.enable = true;
250+
services = {
251+
flaresolverr.enable = true;
252+
samba = {
253+
enable = true;
254+
settings = {
255+
public = {
256+
browseable = "yes";
257+
comment = "Public Music Share";
258+
"guest ok" = "yes";
259+
path = "/data/media/library/music";
260+
"read only" = "yes";
261+
};
262+
};
263+
};
264+
};
251265

252266
server.proxy.virtualHosts = {
253267
jellyfin = {

0 commit comments

Comments
 (0)