]> Git — Sourcephile - sourcephile-nix.git/blob - servers/mermet/unbound.nix
nix: toPath is deprecated
[sourcephile-nix.git] / servers / mermet / unbound.nix
1 { pkgs, lib, config, ... }:
2 {
3 networking.resolvconf.useLocalResolver = true;
4 services.unbound = {
5 enable = true;
6 extraConfig = ''
7 port: 53
8 verbosity: 1
9 '';
10 };
11 }