Increasing MTU size on NRF5340

I am in the process of making a custom service for a peripheral I am developing. I have some data that I would like to have in the same characteristic because it will be retrieved and used together on the central side, but I will likely need 21 bytes to do this. As I have understood this there was previously a limit of 20 bytes to characteristics that can be notified, while now we can have up to 251? 

I've seen a few posts about increasing MTU size, but none of them have helped me actually implement the needed size on my NRF5340DK. Without modifying any configurations I get the warning: <wrn> bt_att: No ATT channel for MTU 24.

based on some forum posts I found I need to set these in the network core config:

CONFIG_BT_BUF_ACL_TX_SIZE=251
CONFIG_BT_BUF_ACL_RX_SIZE=251
CONFIG_BT_CTLR_DATA_LENGTH_MAX=251
and 
CONFIG_BT_L2CAP_TX_MTU=247
in the app config. 
Doing this however gives errors when trying to enable bluetooth: 
bt_hci_core: opcode 0x0c33 status 0x11
Bluetooth initialization failed (err -5)
What am I doing wrong?
And is there any good reasons why I should divide my data into 2 characteristics instead of increasing the size?
I am using nrf Connect SDK v2.6.0 and the softdevice controller for the network core.
Related