1
0
vcp-bula-nixfiles/hosts/dns/dns.nix

42 lines
844 B
Nix
Raw Normal View History

2022-07-14 21:04:08 +02:00
{ config, pkgs, lib, ...}:
{
networking.firewall.interfaces.ens18.allowedUDPPorts = [ 53 ];
2022-07-14 21:04:08 +02:00
services.coredns = {
enable = true;
config = ''
.:53 {
2022-07-15 10:06:48 +02:00
errors
2022-07-14 21:04:08 +02:00
log
cache
2022-07-15 10:06:48 +02:00
prometheus 10.42.10.8:9253
2022-07-14 21:04:08 +02:00
unbound
}
'';
package = lib.fix (self: (pkgs.buildGoModule {
inherit (pkgs.coredns) pname version src postPatch;
patches = pkgs.coredns.patches or [ ] ++ [
./coredns-unbound.patch
];
buildInputs = [ pkgs.unbound ];
vendorSha256 = "sha256-48S1oT+5uT6d+AM8u93AOTbJkW3CLtaowGv+th3cfyM=";
preBuild = ''
go generate
postInstall () {
cp go.mod $out
}
'';
}).overrideAttrs(old: {
preBuild = ''
cp ${self.passthru.go-modules}/go.mod .
go generate
'';
}));
};
}