nix-da/home/thunderbird/default.nix
2024-05-16 04:12:42 +09:00

15 lines
289 B
Nix

{ ... }:
{
programs.thunderbird = {
enable = true;
settings = {
"mailnews.wraplength" = 80;
"mail.pane_config.dynamic" = 2;
"mail.biff.play_sound" = false;
"mail.chat.play_sound" = false;
};
profiles.nico = {
isDefault = true;
};
};
}