I bumped into this issue yesterday and thanks to the comments here I was able to run fsck in the end.
As an inexperienced guix user, I would like to add some details which I believe could be useful to someone else :
I had forgotten I was updating packages and accidentally closed my laptop, which closed my session. Reopening the session, my computer was frozen (mouse and keyboard not responding within several minutes). After manual reboot, I get the following error : /dev/XXX: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
Within the command prompt bourne@(guile-user) I try fsck.
However, fsck command was not recognized. Eventually, my solution was :
The command (system* fsck.ext4 "/dev/XXX") did not work for me because fsck.ext4 was not found.
A question : perhaps the easiest solution (which I only think of right now) was :
e2fsck "/dev/XXX"
Thanks,
Vilgour