1 { lib, config, ... }: {
3 (lib.doRename { from = ["a" "b"]; to = ["c" "d" "e"]; warn = true; use = x: x; visible = true; })
6 warnings = lib.mkOption { type = lib.types.listOf lib.types.str; };
7 c.d.e = lib.mkOption {};
8 result = lib.mkOption {};
12 result = lib.concatStringsSep "%" config.warnings;