added gnunet container

This commit is contained in:
2024-03-11 12:14:46 +01:00
parent db0e08f25d
commit 67aab41b67

View File

@@ -32,7 +32,8 @@
};
containers."jumphost" = {
containers = {
"jumphost" = {
autoStart = true;
privateNetwork = true;
hostBridge = "br0";
@@ -55,7 +56,24 @@
services.fail2ban.enable = true;
};
};
"nextcloud" = {
autoStart = true;
privateNetwork = true;
hostBridge = "br0";
config = {config, lib, pkgs, ... }: {
networking.useDHCP = lib.mkForce true;
};
};
"gnunet" = {
autoStart = true;
privateNetwork = true;
hostBridge = "br0";
config = {config, lib, pkgs, ...}: {
networking.useDHCP = lib.mkForce true;
services.gnunet.enable = true;
};
};
};
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 53589 ];