forked from fediversity/fediversity
Compare commits
No commits in common. "6191409a3400a4f5da5501bcbcf3685652b70f12" and "098a0447a20f683bd0ddfedfb83f42f9c7710555" have entirely different histories.
6191409a34
...
098a0447a2
1 changed files with 13 additions and 13 deletions
|
|
@ -203,19 +203,19 @@
|
|||
|
||||
networking = {
|
||||
nftables.enable = lib.mkForce false;
|
||||
firewall = {
|
||||
allowedTCPPorts = [
|
||||
};
|
||||
|
||||
networking.firewall.allowedTCPPorts = [
|
||||
22
|
||||
80
|
||||
443
|
||||
];
|
||||
# needed for podman to be able to talk over dns
|
||||
interfaces."podman0" = {
|
||||
|
||||
# This is needed for podman to be able to talk over dns
|
||||
networking.firewall.interfaces."podman0" = {
|
||||
allowedUDPPorts = [ 53 ];
|
||||
allowedTCPPorts = [ 53 ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
virtualisation.podman = {
|
||||
enable = true;
|
||||
|
|
@ -231,7 +231,7 @@
|
|||
};
|
||||
|
||||
systemd.services = {
|
||||
woodpecker-agent-docker = {
|
||||
woodpecker-agent-docker = lib.mkIf config.services.woodpecker-agents.agents.docker.enable {
|
||||
wants = [ "podman.socket" ];
|
||||
after = [ "podman.socket" ];
|
||||
serviceConfig = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue