1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-04-08 06:01:11 +00:00

fix: add default value for noproxy dns

This commit is contained in:
Noah Masur 2024-03-30 12:34:37 -04:00
parent 9f33371daf
commit 1b7e4687e4

@ -49,6 +49,7 @@ in {
options.cloudflare.noProxyDomains = lib.mkOption { options.cloudflare.noProxyDomains = lib.mkOption {
type = lib.types.listOf lib.types.str; type = lib.types.listOf lib.types.str;
description = "Domains to use for dyndns without CDN proxying."; description = "Domains to use for dyndns without CDN proxying.";
default = [ ];
}; };
config = lib.mkIf config.cloudflare.enable { config = lib.mkIf config.cloudflare.enable {