From bfe2fb17075dfdcf7a7017b6248924cffd83a880 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 19 Jun 2022 00:55:31 +0000 Subject: [PATCH] totoro: add deluge, expose content share over Samba --- ops/nixos/totoro/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ops/nixos/totoro/default.nix b/ops/nixos/totoro/default.nix index 0cb591caae..7a243c13e2 100644 --- a/ops/nixos/totoro/default.nix +++ b/ops/nixos/totoro/default.nix @@ -13,6 +13,7 @@ in { ../lib/twitternuke.nix ../lib/quotes.bfob.gg.nix ../lib/baserow.nix + ../lib/deluge.nix ../lib/plex.nix ./home-assistant.nix ./authentik.nix @@ -544,8 +545,14 @@ in { extraConfig = '' server min protocol = SMB3_11 client min protocol = SMB3_11 - restrict anonymous = 2 + restrict anonymous = 1 ''; + shares.content = { + comment = "Content"; + browseable = "yes"; + "read only" = "yes"; + "guest ok" = "yes"; + }; shares.homes = { comment = "Home Directories"; browseable = "no";