nix-da/home/thunderbird/default.nix
Nydragon e9371c3a15
fix: thunderbird & sway
Fix problems with sway & thunderbird configs.

For some reason thunderbird doesn't like the profile name to be specified.
2024-05-13 15:46:44 +09:00

7 lines
173 B
Nix

{ pkgs, config, lib, ... }: {
programs.thunderbird = {
enable = true;
#settings = { mailnews.wraplength = 80; };
profiles.nico = { isDefault = true; };
};
}