mirror of
https://github.com/thegeneralist01/config.git
synced 2026-03-07 10:59:55 +01:00
13 lines
334 B
Nix
13 lines
334 B
Nix
{ lib, options, ... }: let
|
|
inherit (lib) mkOption;
|
|
in {
|
|
options.dnsServers = mkOption {
|
|
default = [
|
|
"45.90.28.0#365fed.dns.nextdns.io"
|
|
"2a07:a8c0::#365fed.dns.nextdns.io"
|
|
"45.90.30.0#365fed.dns.nextdns.io"
|
|
"2a07:a8c1::#365fed.dns.nextdns.io"
|
|
"100.100.100.100#shorthair-wall.ts.net"
|
|
];
|
|
};
|
|
}
|