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