summaryrefslogtreecommitdiffstats
path: root/lass/2configs/downloading.nix
blob: 8d0fb0d025260ad8da773b21b0da9ea6bde11e6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{ config, lib, pkgs, ... }:

with import <stockholm/lib>;

{
  users.extraUsers = {
    download = {
      name = "download";
      home = "/var/download";
      createHome = true;
      useDefaultShell = true;
      extraGroups = [
        "download"
      ];
      openssh.authorizedKeys.keys = with config.krebs.users; [
        lass.pubkey
        lass-shodan.pubkey
        lass-icarus.pubkey
        lass-daedalus.pubkey
        lass-helios.pubkey
        makefu.pubkey
        wine-mors.pubkey
      ];
    };

    transmission = {
      extraGroups = [
        "download"
      ];
    };
  };

  users.extraGroups = {
    download = {
      members = [
        "download"
        "transmission"
      ];
    };
  };

  krebs.rtorrent = {
    enable = true;
    web = {
      enable = true;
      port = 9091;
      basicAuth = import <secrets/torrent-auth>;
    };
    rutorrent.enable = true;
    enableXMLRPC = true;
    listenPort = 51413;
    downloadDir = "/var/download/finished";
    # dump old torrents into watch folder to have them re-added
    watchDir = "/var/download/watch";
  };

  krebs.iptables = {
    enable = true;
    tables.filter.INPUT.rules = [
      { predicate = "-p tcp --dport 9091"; target = "ACCEPT"; }
      { predicate = "-p tcp --dport 51413"; target = "ACCEPT"; }
      { predicate = "-p udp --dport 51413"; target = "ACCEPT"; }
    ];
  };
}