8 lines
130 B
Nix
8 lines
130 B
Nix
{ pkgs, lib, config, ... }:
|
|
{
|
|
config = {
|
|
networking.networkmanager.dns = "none";
|
|
services.unbound.enable = true;
|
|
};
|
|
}
|