GHOSCHT
108baeae60
i previously had to fall back to cloudflare dns which didn't have all custom dns entries from pihole
14 lines
312 B
Nix
14 lines
312 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 = {
|
|
enable = true;
|
|
allowedTCPPorts = [80 443];
|
|
};
|
|
}
|