diff --git a/modules/home/email/default.nix b/modules/home/email/default.nix index 736a6da..76e0bcf 100644 --- a/modules/home/email/default.nix +++ b/modules/home/email/default.nix @@ -1,6 +1,10 @@ { ... }: { programs.thunderbird = { enable = true; - profiles = [ "default" ]; + profiles = { + "default" = { + isDefault = true; + }; + }; }; }