nixfiles/hosts/nullbox/unbound.nix

12 lines
138 B
Nix

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