diff options
author | tv <tv@krebsco.de> | 2025-03-03 02:03:42 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2025-03-03 02:03:42 +0100 |
commit | 16cfecaa40f4ca2e0389ea7f3200b674231ce209 (patch) | |
tree | 80390381441b5099742cb39408e76b50a12f920c | |
parent | ad6b7da8943db841f68da1ccb4324c609fc8d6cd (diff) |
sshd: from mycelium allow connections to port 22
-rw-r--r-- | configs/sshd.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/sshd.nix b/configs/sshd.nix index 281d498..d99ceb5 100644 --- a/configs/sshd.nix +++ b/configs/sshd.nix @@ -1,6 +1,7 @@ { config, lib, ... }: let cfg.host = config.krebs.build.host; nets = + lib.optional (cfg.host.nets?mycelium) cfg.host.nets.mycelium ++ lib.optional (cfg.host.nets?retiolum) cfg.host.nets.retiolum ++ lib.optional (cfg.host.nets?wiregrill) cfg.host.nets.wiregrill; in { |