1

Compare commits

..

2 Commits

Author SHA1 Message Date
77728d2574 Add synology nfs mount 2023-11-19 17:04:10 +01:00
d71b7a56f0 Remove syncthing again 2023-11-19 17:04:04 +01:00
3 changed files with 7 additions and 45 deletions

View File

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

View File

@ -28,6 +28,13 @@
fsType = "ext4"; fsType = "ext4";
}; };
# Synology DS223j
"/media/synology-syncthing" = {
device = "192.168.86.15:/volume1/DockerVolumes";
fsType = "nfs";
};
# SG Exos Mirror Shares # SG Exos Mirror Shares
"/media/Movie" = { "/media/Movie" = {

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"
];
};
}