test
Some checks failed
/ Build Nix targets (push) Successful in 44s
/ build hive configuration (push) Failing after 19s

This commit is contained in:
shobu
2025-11-12 04:15:22 +01:00
parent 26ac144938
commit c901116678
10 changed files with 58 additions and 45 deletions

View File

@@ -1,10 +1,12 @@
{nodes, ...}:{
{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 = "10.0.0.4:22";
destination = "${sin-address}:22";
}];
}

View File

@@ -20,7 +20,7 @@
name = "config.yml";
text = ''
container:
network: "bridge"
network: "host"
'';
};
in {