1{...}: {lib, ...}: { 2 options.cow.firewall = { 3 tcp = lib.mkOption { 4 type = lib.types.listOf lib.types.int; 5 default = []; 6 }; 7 udp = lib.mkOption { 8 type = lib.types.listOf lib.types.int; 9 default = []; 10 }; 11 }; 12}