Compare commits
2 Commits
2f479191b4
...
77728d2574
| Author | SHA1 | Date | |
|---|---|---|---|
| 77728d2574 | |||
| d71b7a56f0 |
@ -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
|
||||||
|
|||||||
@ -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" = {
|
||||||
|
|||||||
@ -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"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user