1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Add unbound config and ipv6 net

This commit is contained in:
Stefan Ellmauthaler 2022-08-01 17:16:02 +02:00
parent d2fce934d7
commit 7c3a7d6876
Failed to extract signature
2 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,7 @@ with lib; {
prefixes = {
ipv4 = [ "192.168.244" ];
ipv6 = {
ula = [ ]; # TODO
ula = [ "fdaa:3313:9dfa:dfa3" ]; # TODO
gua = [ ];
};
serial = "2022073100";

View File

@ -19,6 +19,7 @@ with lib; {
unbound = {
enable = true;
settings.server.interface = [ "127.0.0.0" "::1" ];
settings.server.accesControl = [ "192.168.244.0/24" "fdaa:3313:9dfa:dfa3/64" ];
};
};