I am trying to configure doom emacs as IRC client, and I am following the following configuration
(after! circe
(set-irc-server! "irc.libera.chat"
`(:tls t
:port 6697
:nick "doom"
:sasl-username "myusername"
:sasl-password "mypassword"
:channels ("#emacs"))))
I put these changes inside the .doom.d/config.el
but when I start
The circle from the Mx the client will be connected with the
wrong user (taking the hostname as the user nickname).
So looks like my configuration is not taking into count.
Any idea what is happening?