nixcloud-webservices icon indicating copy to clipboard operation
nixcloud-webservices copied to clipboard

Infinite recursion on nixos 21.05

Open fgaz opened this issue 4 years ago • 3 comments

It seems to be related to email.

To reproduce, try to build this file in the nixcloud-webservices repo:

(import <nixpkgs/nixos> { configuration =
  { config, pkgs, ... }:

  {
    imports = [ ./. ];
    nixcloud.email.enable = true;
    nixcloud.email.domains = ["example.org"];
  };
}).system

fgaz avatar Jul 14 '21 14:07 fgaz

I wonder if this is due to:

Declaring `services.dovecot2.mailboxes' as a list is deprecated and will break eval in 21.03! See the release notes for more info for migration.

fgaz avatar Jul 14 '21 15:07 fgaz

Nope. While that is a problem, it isn't the cause of the infinite recursion

fgaz avatar Jul 14 '21 15:07 fgaz

Almost forgot about this. I was wrong, it isn't related to email, but to webservices (the ones that allow multiple instances)

fgaz avatar Oct 10 '21 14:10 fgaz