Simon Bruder
10b8d432d5
This applies the REUSE specification to the repository, so the licensing information can be tracked for every file individually.
23 lines
522 B
Nix
23 lines
522 B
Nix
# SPDX-FileCopyrightText: 2023 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{ config, lib, ... }:
|
|
|
|
lib.mkIf config.sbruder.mailserver.enable {
|
|
# Enable recursor for DNSBLs etc.
|
|
services.resolved.enable = false;
|
|
services.unbound = {
|
|
enable = true;
|
|
settings = {
|
|
server = {
|
|
interface = [ "127.0.0.53" ];
|
|
};
|
|
};
|
|
resolveLocalQueries = false; # does not work with .53
|
|
};
|
|
networking.resolvconf.extraConfig = ''
|
|
name_servers='127.0.0.53'
|
|
'';
|
|
}
|