1

Rename wireguard service

This commit is contained in:
2023-09-12 16:01:24 +02:00
parent e5040ba53d
commit ff826bd355

View File

@ -4,12 +4,12 @@
pkgs, pkgs,
... ...
}: { }: {
virtualisation.oci-containers.containers.wireguard_vps = { virtualisation.oci-containers.containers.wireguard-vps = {
image = "linuxserver/wireguard:latest"; image = "linuxserver/wireguard:latest";
autoStart = true; autoStart = true;
dependsOn = [ dependsOn = [
"pihole" # "pihole"
]; ];
ports = [ ports = [
@ -30,6 +30,7 @@
extraOptions = [ extraOptions = [
"--cap-add=NET_ADMIN" "--cap-add=NET_ADMIN"
"--cap-add=SYS_MODULE" "--cap-add=SYS_MODULE"
# "--net=behind-nginx"
]; ];
}; };
} }