2024-05-03 21:01:25 +02:00
|
|
|
{pkgs, ...}: {
|
2024-03-06 11:35:13 +01:00
|
|
|
virtualisation.arion = {
|
|
|
|
projects.dns.settings = {
|
|
|
|
imports = [./arion-compose.nix];
|
|
|
|
};
|
|
|
|
};
|
2024-05-03 21:01:25 +02:00
|
|
|
|
|
|
|
# Fix containers not being able to use pihole as dns
|
|
|
|
networking.resolvconf.useLocalResolver = true;
|
2024-05-23 23:56:05 +02:00
|
|
|
networking.firewall.allowedTCPPorts = [80 443];
|
2024-03-06 11:35:13 +01:00
|
|
|
}
|