home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit 2ebbb34dc9d589704f26696bd3eab1ef71969a12
parent c0affcbade1be3069a485fc328128b6cde4386c3
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon, 27 Nov 2023 18:01:13 +0100

Add podman to trustedInterfaces

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Msystems/modules/dev/containers.nix | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/systems/modules/dev/containers.nix b/systems/modules/dev/containers.nix @@ -114,7 +114,7 @@ in environment.systemPackages = with pkgs; [ my.buildx ]; - networking.firewall.trustedInterfaces = [ "docker0" ]; + networking.firewall.trustedInterfaces = [ "docker0" "podman" ]; }) (mkIf cfg.podman.enable { virtualisation.podman.enable = true;