nixfiles/hosts/nullbox/unbound.nix

8 lines
130 B
Nix

{ pkgs, lib, config, ... }:
{
config = {
networking.networkmanager.dns = "none";
services.unbound.enable = true;
};
}