Skip to content

Commit 2d059e0

Browse files
committed
chore: comment out old containers - config.nix
Signed-off-by: Reputable2722 <153411261+Reputable2772@users.noreply.github.com>
1 parent 06d66a9 commit 2d059e0

1 file changed

Lines changed: 82 additions & 82 deletions

File tree

Config/config.nix

Lines changed: 82 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ rec {
162162
# Can contain the path with docker mount path, or without. Doesn't matter.
163163
backup = {
164164
blacklistedPaths = [
165-
lidarr.custom.downloadPath
166-
lidarr.custom.music.libraryPath
165+
# lidarr.custom.downloadPath
166+
# lidarr.custom.music.libraryPath
167167
]
168168
++ syncthing.custom.folders;
169169
location = "${dir.base}/Applications/Containers/Backup";
@@ -186,48 +186,48 @@ rec {
186186
envFiles = null;
187187
env = null;
188188
};
189-
gluetun = {
190-
dir = null;
191-
# Proton VPN's OpenVPN user and password.
192-
envFiles = [ "proton-openvpn" ];
193-
env = [
194-
"DOT=off"
195-
"DNS_KEEP_NAMESERVER=on"
196-
"FREE_ONLY=on"
197-
"VPN_SERVICE_PROVIDER=protonvpn"
198-
"SERVER_COUNTRIES=Netherlands"
199-
];
200-
};
201-
lidarr = {
202-
dir = null;
203-
envFiles = [ ];
204-
env = [
205-
"TZ=${system.timezone}"
206-
"PUID=0"
207-
"PGID=0"
208-
];
209-
/**
210-
Host path to be mounted over to the container
211-
for copying over downloads from qBittorrent.
189+
# gluetun = {
190+
# dir = null;
191+
# # Proton VPN's OpenVPN user and password.
192+
# envFiles = [ "proton-openvpn" ];
193+
# env = [
194+
# "DOT=off"
195+
# "DNS_KEEP_NAMESERVER=on"
196+
# "FREE_ONLY=on"
197+
# "VPN_SERVICE_PROVIDER=protonvpn"
198+
# "SERVER_COUNTRIES=Netherlands"
199+
# ];
200+
# };
201+
# lidarr = {
202+
# dir = null;
203+
# envFiles = [ ];
204+
# env = [
205+
# "TZ=${system.timezone}"
206+
# "PUID=0"
207+
# "PGID=0"
208+
# ];
209+
# /**
210+
# Host path to be mounted over to the container
211+
# for copying over downloads from qBittorrent.
212212

213-
The container path should be same inside
214-
all the containers.
215-
*/
216-
custom.downloadPath = qbittorrent.custom.downloadPath;
217-
custom.music.libraryPath = navidrome.custom.music.libraryPath;
218-
};
219-
qbittorrent = {
220-
dir = null;
221-
envFiles = null;
222-
env = [
223-
"TZ=${system.timezone}"
224-
"WEBUI_PORT=8516"
225-
"PUID=0"
226-
"PGID=0"
227-
"TORRENTING_PORT=61851"
228-
];
229-
custom.downloadPath = "${dir.base}/Media/Torrents:/data/downloads";
230-
};
213+
# The container path should be same inside
214+
# all the containers.
215+
# */
216+
# custom.downloadPath = qbittorrent.custom.downloadPath;
217+
# custom.music.libraryPath = navidrome.custom.music.libraryPath;
218+
# };
219+
# qbittorrent = {
220+
# dir = null;
221+
# envFiles = null;
222+
# env = [
223+
# "TZ=${system.timezone}"
224+
# "WEBUI_PORT=8516"
225+
# "PUID=0"
226+
# "PGID=0"
227+
# "TORRENTING_PORT=61851"
228+
# ];
229+
# custom.downloadPath = "${dir.base}/Media/Torrents:/data/downloads";
230+
# };
231231
vaultwarden = {
232232
dir = null;
233233
envFiles = [ "push-notifications" ];
@@ -262,25 +262,25 @@ rec {
262262
];
263263
};
264264
};
265-
homepage = {
266-
dir = null;
267-
envFiles = null;
268-
env = null;
269-
};
270-
navidrome = {
271-
dir = null;
272-
envFiles = null;
273-
env = [
274-
"ND_SCANSCHEDULE=1h"
275-
"ND_LOGLEVEL=info"
276-
"ND_SESSIONTIMEOUT=24h"
277-
# Look below.
278-
"ND_MUSICFOLDER=/data/music"
279-
# Relative to MusicFolder. So, the location of this folder is /data/music/playlists
280-
"ND_PLAYLISTSPATH=playlists"
281-
];
282-
custom.music.libraryPath = "${dir.base}/Media/Music:/data/music";
283-
};
265+
# homepage = {
266+
# dir = null;
267+
# envFiles = null;
268+
# env = null;
269+
# };
270+
# navidrome = {
271+
# dir = null;
272+
# envFiles = null;
273+
# env = [
274+
# "ND_SCANSCHEDULE=1h"
275+
# "ND_LOGLEVEL=info"
276+
# "ND_SESSIONTIMEOUT=24h"
277+
# # Look below.
278+
# "ND_MUSICFOLDER=/data/music"
279+
# # Relative to MusicFolder. So, the location of this folder is /data/music/playlists
280+
# "ND_PLAYLISTSPATH=playlists"
281+
# ];
282+
# custom.music.libraryPath = "${dir.base}/Media/Music:/data/music";
283+
# };
284284
linkding = {
285285
dir = null;
286286
envFiles = null;
@@ -311,26 +311,26 @@ rec {
311311
# env = null;
312312
# envFiles = null;
313313
# };
314-
affine_server = {
315-
dir = "${dir.containers}/Affine/server";
316-
envFiles = [ "affine" ];
317-
env = null;
318-
};
319-
affine_migration = {
320-
dir = "${dir.containers}/Affine/migration";
321-
envFiles = [ "affine" ];
322-
env = null;
323-
};
324-
affine_postgres = {
325-
dir = "${dir.containers}/Affine/postgres";
326-
envFiles = [ "affine" ];
327-
env = null;
328-
};
329-
affine_redis = {
330-
dir = "${dir.containers}/Affine/redis";
331-
envFiles = null;
332-
env = null;
333-
};
314+
# affine_server = {
315+
# dir = "${dir.containers}/Affine/server";
316+
# envFiles = [ "affine" ];
317+
# env = null;
318+
# };
319+
# affine_migration = {
320+
# dir = "${dir.containers}/Affine/migration";
321+
# envFiles = [ "affine" ];
322+
# env = null;
323+
# };
324+
# affine_postgres = {
325+
# dir = "${dir.containers}/Affine/postgres";
326+
# envFiles = [ "affine" ];
327+
# env = null;
328+
# };
329+
# affine_redis = {
330+
# dir = "${dir.containers}/Affine/redis";
331+
# envFiles = null;
332+
# env = null;
333+
# };
334334
};
335335
};
336336
guest = { };

0 commit comments

Comments
 (0)