I have not added or modified any of my chords for Cider per se, but I did change them for the smartparens package. I already had the muscle memory for certain combos so the doom defaults were driving me bonkers!
I used the use-package!
form to override the key mappings like so:
(use-package! smartparens
:init
(map! :map smartparens-mode-map
"C-M-f" #'sp-forward-sexp
"C-M-b" #'sp-backward-sexp
"C-M-u" #'sp-backward-up-sexp
"C-M-d" #'sp-down-sexp
"C-M-p" #'sp-backward-down-sexp
"C-M-n" #'sp-up-sexp
"C-M-s" #'sp-splice-sexp
"C-M-." #'sp-forward-slurp-sexp
"C->" #'sp-forward-barf-sexp
"C-M-," #'sp-backward-slurp-sexp
"C-<" #'sp-backward-barf-sexp))
Although if you just want to add one or two you could probably map it similar to this;
(map! :after cider-repl-mode "C-c C-M-e" #'foo-bar)
Replace foo-bar
with the lisp function that you need.