nixos/podman-network-socket-ghostunnel: move condition to include socket

This commit is contained in:
zowoq 2021-05-31 22:57:39 +10:00
parent 829b074ee0
commit 72f54c32a6

View file

@ -15,9 +15,9 @@ in
};
};
config = {
config = lib.mkIf (cfg.enable && cfg.server == "ghostunnel") {
services.ghostunnel = lib.mkIf (cfg.enable && cfg.server == "ghostunnel") {
services.ghostunnel = {
enable = true;
servers."podman-socket" = {
inherit (cfg.tls) cert key cacert;