1
Fork 0
mirror of https://github.com/thegeneralist01/config.git synced 2026-03-07 10:59:55 +01:00
config/modules/common/dns-options.nix
TheGeneralist 818eeecc86
dns: remove nextdns
Tailscale's already using it, and I am using Tailscale 24/7
2025-08-02 17:04:12 +02:00

9 lines
159 B
Nix

{ lib, ... }: let
inherit (lib) mkOption;
in {
options.dnsServers = mkOption {
default = [
"100.100.100.100#shorthair-wall.ts.net"
];
};
}