1{ lib, ... }: { 2 3 imports = [{ 4 value = lib.mkDefault "def"; 5 }]; 6 7 value = lib.mkMerge [ 8 (lib.mkIf false "nope") 9 "yes" 10 ]; 11 12}