From 64ca6702d9305045960027f2c8e22955cdee5d76 Mon Sep 17 00:00:00 2001 From: twoneis Date: Mon, 13 Nov 2023 18:35:15 +0100 Subject: [PATCH] fixed profile --- modules/home/email/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; + }; + }; }; }