11 lines
280 B
Nix
11 lines
280 B
Nix
{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.allowedTCPPorts = [80 443];
|
|
}
|