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

(cherry picked from commit 72f54c32a6114a69caec30170a29837c91434aff)
This commit is contained in:
zowoq 2021-05-31 22:57:39 +10:00 committed by Robert Hensing
parent eeefa0a65d
commit 0684f78698
1 changed files with 2 additions and 2 deletions

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;