homelab/modules/gitea/n100/default.nix
lelu awen 28874ebb5f refactor gitea configuration in a module
updated: modules/gitea to put specific configuration in the module
updated: flake.nix to import the module in nodes
2025-09-18 18:51:56 +02:00

8 lines
193 B
Nix

{nodes, ...}:{
networking.nat.forwardPorts = [{
sourcePort = nodes.zimablade.config.services.gitea.settings.server.SSH_PORT;
proto = "tcp";
destination = "10.0.0.4:22";
}];
}