1

Remove syncthing again

This commit is contained in:
2023-11-19 17:04:04 +01:00
parent 2f479191b4
commit d71b7a56f0
2 changed files with 0 additions and 45 deletions

View File

@ -23,7 +23,6 @@
./services/nginx-proxy-manager.nix
./services/pihole.nix
./services/portainer.nix
./services/syncthing.nix
./services/uptime-kuma.nix
./services/whats-up-docker.nix
./services/wireguard-vps.nix

View File

@ -1,44 +0,0 @@
{
config,
lib,
pkgs,
...
}: {
virtualisation.oci-containers.containers.syncthing = {
image = "lscr.io/linuxserver/syncthing:latest";
autoStart = true;
dependsOn = [];
ports = [
# "8384:8384" # WebUI
"22000:22000/tcp"
"22000:22000/udp"
"21027:21027/udp"
];
volumes = [
"syncthing_config:/config"
"gitea_data:/data/gitea:ro"
"immich_data:/data/immich:ro"
"nextcloud_data:/data/nextcloud:ro"
"memos_data:/data/memos:ro"
# TODO: Add the rest
];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
# NVIDIA_VISIBLE_DEVICES = "all";
# NVIDIA_DRIVER_CAPABILITIES = "all";
};
extraOptions = [
# "--gpus=all"
"--net=behind-nginx"
];
};
}