summaryrefslogtreecommitdiff
path: root/os/fscusat/modules/mirror/debian/default.nix
blob: c052bdd2e6d344c67ada496aeac673908e72d6b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ config, ... }: let
  name = config.userdata.name;
  email = config.userdata.email;
in {
  imports = [ ./ftpsync.nix ];

  services.ftpsync = {
    enable = true;

    settings = {
      RSYNC_HOST = "ossmirror.mycloud.services";
      RSYNC_PATH = "debian";
      ARCH_INCLUDE = "amd64 riscv64";

      INFO_MAINTAINER = "${name} <${email}>";
      INFO_COUNTRY = "IN";
      INFO_LOCATION = "Kochi, Kerala";
      INFO_THROUGHPUT = "1Gb";
      MAILTO = email;
    };
  };
}