homelab/modules/gitea/thea/default.nix
shobu c901116678
Some checks failed
/ Build Nix targets (push) Successful in 44s
/ build hive configuration (push) Failing after 19s
test
2025-11-12 04:15:22 +01:00

13 lines
275 B
Nix

{nodes, ...}:let
sin-address = "192.168.1.14";
in{
imports = [
./virtualisation.nix
];
networking.nat.forwardPorts = [{
sourcePort = nodes.sin.config.services.gitea.settings.server.SSH_PORT;
proto = "tcp";
destination = "${sin-address}:22";
}];
}