zimoun schreef op vr 27-05-2022 om 17:46 [+0200]: > +      (catch #t   ; Handle value out of range (e.g., 1234567890 -> 12E4567890) > +        (lambda () > +          ;; Handle empty or corrupted 'expiry-file' when 'write' below is > +          ;; interrupted before being complete (e.g., SIGINT with C-c) or when > +          ;; the filesystem crashes. > +          (or (string->number value) 0)) Why are 'stack-error' and 'out-of-memory' being caught? I recommend using one of the regexes from string->generations in (guix ui) instead to avoid catching too much. Greetings, Maxime.