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
2026-01-08 21:15:12 +01:00

10 lines
176 B
Nix

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