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.
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.