Forgot default value :|

This commit is contained in:
Emmet
2025-09-20 17:24:42 -05:00
parent c7be140c86
commit 8a2a6ccfdb

View File

@@ -10,6 +10,7 @@ in {
systemSettings.security.blocklist = {
enable = lib.mkEnableOption "Enable basic host blocking for bad websites";
allowedHosts = lib.mkOption {
default = [ ];
description = "List of hosts to allow (remove from blocklist)";
type = lib.types.listOf lib.types.str;
};