mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
67 lines
No EOL
1.9 KiB
Nix
67 lines
No EOL
1.9 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.transmission = let transmission-done-script = pkgs.writeScriptBin "script" ''
|
|
#!${pkgs.bash}/bin/bash
|
|
set -e
|
|
if [ "$TR_TORRENT_DIR"/"$TR_TORRENT_NAME" != "/" ]; then
|
|
cd "$TR_TORRENT_DIR"/"$TR_TORRENT_NAME"
|
|
if [ ! -z "*.rar" ]; then
|
|
${pkgs.unrar}/bin/unrar x "*.rar"
|
|
fi
|
|
chmod ugo=rwX .
|
|
fi'';
|
|
in {
|
|
enable = true;
|
|
home = "/disks/pool-raw/transmission";
|
|
downloadDirPermissions = "777";
|
|
settings = {
|
|
download-dir = "/disks/pool-raw/Public/Media/";
|
|
incomplete-dir = "/disks/pool-raw/Public/Media/.incomplete";
|
|
incomplete-dir-enabled = true;
|
|
rpc-bind-address = "0.0.0.0";
|
|
rpc-whitelist = "127.0.0.1,192.168.1.*";
|
|
script-torrent-done-enabled = true;
|
|
script-torrent-done-filename = "${transmission-done-script}/bin/script";
|
|
umask = 0;
|
|
};
|
|
};
|
|
|
|
services.samba = {
|
|
enable = true;
|
|
securityType = "user";
|
|
extraConfig = ''
|
|
workgroup = WORKGROUP
|
|
server string = samhain
|
|
netbios name = samhain
|
|
security = user
|
|
#use sendfile = yes
|
|
#max protocol = smb2
|
|
hosts allow = 192.168.1. localhost
|
|
hosts deny = 0.0.0.0/0
|
|
guest account = nobody
|
|
map to guest = bad user
|
|
'';
|
|
shares = {
|
|
media = {
|
|
path = "/disks/pool-raw/Public/Media";
|
|
browseable = "yes";
|
|
"read only" = "no";
|
|
"guest ok" = "yes";
|
|
"create mask" = "0644";
|
|
"directory mask" = "0755";
|
|
"force user" = "transmission";
|
|
"force group" = "transmission";
|
|
};
|
|
};
|
|
};
|
|
|
|
services.nginx.virtualHosts = {
|
|
"192.168.1.135" = {
|
|
locations."/share/" = {
|
|
alias = "/disks/pool-raw/Public/Media/";
|
|
extraConfig = "autoindex on;";
|
|
};
|
|
};
|
|
};
|
|
} |