If I do nix repl followed by "\\" I get just that, a double backslash. The reason I’m asking is because I want to use Nix to configure my alacritty keybindings and for that I need lots of
In any case, the source code seems to indicate that double backslashes are replaced with single backslashes, but it seems like a hack and I’m not sure about whether it’s a good way of doing it.
Thanks the replaceStrings [ "\\\\" ] [ "\\" ] does the trick so that I end up with \u in my config file. Was a bit lazy of me to not check the source, sorry