Compare commits

..

2 commits

Author SHA1 Message Date
6191409a34
format 2025-08-04 14:53:37 +02:00
33e0d5adfe
rm last conditional 2025-08-04 14:53:24 +02:00

View file

@ -203,18 +203,18 @@
networking = { networking = {
nftables.enable = lib.mkForce false; nftables.enable = lib.mkForce false;
}; firewall = {
allowedTCPPorts = [
networking.firewall.allowedTCPPorts = [ 22
22 80
80 443
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 allowedUDPPorts = [ 53 ];
networking.firewall.interfaces."podman0" = { allowedTCPPorts = [ 53 ];
allowedUDPPorts = [ 53 ]; };
allowedTCPPorts = [ 53 ]; };
}; };
virtualisation.podman = { virtualisation.podman = {
@ -231,7 +231,7 @@
}; };
systemd.services = { systemd.services = {
woodpecker-agent-docker = lib.mkIf config.services.woodpecker-agents.agents.docker.enable { woodpecker-agent-docker = {
wants = [ "podman.socket" ]; wants = [ "podman.socket" ];
after = [ "podman.socket" ]; after = [ "podman.socket" ];
serviceConfig = { serviceConfig = {