{pkgs, ...}: {
  virtualisation.arion = {
    projects.dns.settings = {
      imports = [./arion-compose.nix];
    };
  };

  # Fix containers not being able to use pihole as dns
  networking.resolvconf.useLocalResolver = true;
  networking.firewall = {
    enable = true;
    allowedTCPPorts = [80 443];
  };
}