summaryrefslogtreecommitdiff
path: root/hosts/fscusat/modules/ftpsync/default.nix
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-02-17 18:31:41 +0530
committersinanmohd <sinan@sinanmohd.com>2024-02-17 21:24:02 +0530
commitbf12a289b2e4c8f22d1be781408a6d1273fd3b04 (patch)
tree6bf2eb88598db2d47119247d92be7bfb7b688b48 /hosts/fscusat/modules/ftpsync/default.nix
parent60ed7bde534f23be9e3ee5429f72cf63ac8bfff2 (diff)
fscusat/modules/mirror: init
Diffstat (limited to 'hosts/fscusat/modules/ftpsync/default.nix')
-rw-r--r--hosts/fscusat/modules/ftpsync/default.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/hosts/fscusat/modules/ftpsync/default.nix b/hosts/fscusat/modules/ftpsync/default.nix
deleted file mode 100644
index aa214ac..0000000
--- a/hosts/fscusat/modules/ftpsync/default.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ config, ... }: let
- name = config.userdata.user;
- 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";
- };
- };
-}