There is a new pull request by ashpooljh against master on the void-packages repository https://github.com/ashpooljh/void-packages nethack https://github.com/void-linux/void-packages/pull/27036 nethack: fix SYSCF_FILE location I wasn't able to enter the wizard mode, even as root, e.g. `sudo nethack -D -u wizard` just printed ``` Entering explore/discovery mode instead ``` Then I found out that `SYSCF_FILE` in the template was pointing to the directory `/usr/lib/nethack` instead of the file itself `/usr/lib/nethack/sysconf`, and used `gdb` to verify that this had lead to `src/files.c:parse_conf_file` silently failing. Updating the value fixed the issue, and now the sysconf file is read and I'm able to access the wizard mode. A patch file from https://github.com/void-linux/void-packages/pull/27036.patch is attached