add various plex/arr services, remove nix-serve, add lynis config

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2025-05-05 17:17:31 -04:00
parent 36479499d6
commit 91a92f82a5
7 changed files with 87 additions and 23 deletions

View File

@ -45,7 +45,7 @@ in
];
};
delugeVPN = delugeBase // {
image = "binhex/arch-delugevpn";
image = "binhex/arch-delugevpn:latest";
extraOptions = [
"--privileged=true"
"--sysctl"
@ -57,13 +57,14 @@ in
VPN_PROV = "custom";
ENABLE_PRIVOXY = "yes";
LAN_NETWORK = "192.168.0.0/16";
NAME_SERVERS = "194.242.2.9";
#NAME_SERVERS = "194.242.2.9";
NAME_SERVERS = "9.9.9.9";
# note, delete /config/perms.txt to force a bulk permissions update
};
volumes = [
"${delugevpn_path}/config:/config"
"${delugevpn_path}/data:/data"
"${deluge_path}/data:/data" # use common torrent path yuck
"/etc/localtime:/etc/localtime:ro"
];
ports = [
@ -71,6 +72,9 @@ in
"8119:8118"
"39275:39275"
"39275:39275/udp"
"48346:48346"
"48346:48346/udp"
];
};
};