totoro: add deluge, expose content share over Samba
This commit is contained in:
parent
825c371243
commit
bfe2fb1707
1 changed files with 8 additions and 1 deletions
|
@ -13,6 +13,7 @@ in {
|
||||||
../lib/twitternuke.nix
|
../lib/twitternuke.nix
|
||||||
../lib/quotes.bfob.gg.nix
|
../lib/quotes.bfob.gg.nix
|
||||||
../lib/baserow.nix
|
../lib/baserow.nix
|
||||||
|
../lib/deluge.nix
|
||||||
../lib/plex.nix
|
../lib/plex.nix
|
||||||
./home-assistant.nix
|
./home-assistant.nix
|
||||||
./authentik.nix
|
./authentik.nix
|
||||||
|
@ -544,8 +545,14 @@ in {
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
server min protocol = SMB3_11
|
server min protocol = SMB3_11
|
||||||
client 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 = {
|
shares.homes = {
|
||||||
comment = "Home Directories";
|
comment = "Home Directories";
|
||||||
browseable = "no";
|
browseable = "no";
|
||||||
|
|
Loading…
Reference in a new issue