mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
126 lines
3.8 KiB
Nix
126 lines
3.8 KiB
Nix
{ lib, config, ... }:
|
|
let
|
|
inherit (config.repo.secrets.common) workHostName;
|
|
serviceDomain = "storync.swarsel.win";
|
|
servicePort = 8384;
|
|
serviceUser = "syncthing";
|
|
serviceGroup = serviceUser;
|
|
serviceName = "syncthing";
|
|
in
|
|
{
|
|
options.swarselsystems.modules.server."${serviceName}" = lib.mkEnableOption "enable ${serviceName} on server";
|
|
config = lib.mkIf config.swarselsystems.modules.server."${serviceName}" {
|
|
|
|
users.users."${serviceUser}" = {
|
|
extraGroups = [ "users" ];
|
|
group = serviceGroup;
|
|
isSystemUser = true;
|
|
};
|
|
|
|
users.groups."${serviceGroup}" = { };
|
|
|
|
networking.firewall.allowedTCPPorts = [ servicePort ];
|
|
|
|
services.syncthing = {
|
|
enable = true;
|
|
user = serviceUser;
|
|
group = serviceGroup;
|
|
dataDir = "/Vault/data/syncthing";
|
|
configDir = "/Vault/data/syncthing/.config/syncthing";
|
|
guiAddress = "0.0.0.0:${builtins.toString servicePort}";
|
|
openDefaultPorts = true; # opens ports TCP/UDP 22000 and UDP 21027 for discovery
|
|
relay.enable = false;
|
|
settings = {
|
|
urAccepted = -1;
|
|
devices = {
|
|
"magicant" = {
|
|
id = "VMWGEE2-4HDS2QO-KNQOVGN-LXLX6LA-666E4EK-ZBRYRRO-XFEX6FB-6E3XLQO";
|
|
};
|
|
"sync@oracle" = {
|
|
id = "ETW6TST-NPK7MKZ-M4LXMHA-QUPQHDT-VTSHH5X-CR5EIN2-YU7E55F-MGT7DQB";
|
|
};
|
|
"${workHostName}" = {
|
|
id = "YAPV4BV-I26WPTN-SIP32MV-SQP5TBZ-3CHMTCI-Z3D6EP2-MNDQGLP-53FT3AB";
|
|
};
|
|
"moonside@oracle" = {
|
|
id = "VPCDZB6-MGVGQZD-Q6DIZW3-IZJRJTO-TCC3QUQ-2BNTL7P-AKE7FBO-N55UNQE";
|
|
};
|
|
};
|
|
folders = {
|
|
"Default Folder" = lib.mkForce {
|
|
path = "/Vault/data/syncthing/Sync";
|
|
type = "receiveonly";
|
|
versioning = null;
|
|
devices = [ "sync@oracle" "magicant" "${workHostName}" "moonside@oracle" ];
|
|
id = "default";
|
|
};
|
|
"Obsidian" = {
|
|
path = "/Vault/data/syncthing/Obsidian";
|
|
type = "receiveonly";
|
|
versioning = {
|
|
type = "simple";
|
|
params.keep = "5";
|
|
};
|
|
devices = [ "sync@oracle" "magicant" "${workHostName}" "moonside@oracle" ];
|
|
id = "yjvni-9eaa7";
|
|
};
|
|
"Org" = {
|
|
path = "/Vault/data/syncthing/Org";
|
|
type = "receiveonly";
|
|
versioning = {
|
|
type = "simple";
|
|
params.keep = "5";
|
|
};
|
|
devices = [ "sync@oracle" "magicant" "${workHostName}" "moonside@oracle" ];
|
|
id = "a7xnl-zjj3d";
|
|
};
|
|
"Vpn" = {
|
|
path = "/Vault/data/syncthing/Vpn";
|
|
type = "receiveonly";
|
|
versioning = {
|
|
type = "simple";
|
|
params.keep = "5";
|
|
};
|
|
devices = [ "sync@oracle" "magicant" "${workHostName}" "moonside@oracle" ];
|
|
id = "hgp9s-fyq3p";
|
|
};
|
|
# "Documents" = {
|
|
# path = "/Vault/data/syncthing/Documents";
|
|
# type = "receiveonly";
|
|
# versioning = {
|
|
# type = "simple";
|
|
# params.keep = "5";
|
|
# };
|
|
# devices = [ "magicant" "${workHostName}" "moonside@oracle" ];
|
|
# id = "hgr3d-pfu3w";
|
|
# };
|
|
};
|
|
};
|
|
};
|
|
|
|
nodes.moonside.services.nginx = {
|
|
upstreams = {
|
|
"${serviceName}" = {
|
|
servers = {
|
|
"192.168.1.2:${builtins.toString servicePort}" = { };
|
|
};
|
|
};
|
|
};
|
|
virtualHosts = {
|
|
"${serviceDomain}" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
acmeRoot = null;
|
|
locations = {
|
|
"/" = {
|
|
proxyPass = "http://${serviceName}";
|
|
extraConfig = ''
|
|
client_max_body_size 0;
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|