mkIf vs if / then

mkIfElse = p: yes: no: mkMerge [
  (mkIf p yes)
  (mkIf (!p) no)
];

I usually just use this construct inline, rather than calling a function for it.

8 Likes