Fix problems with sway & thunderbird configs. For some reason thunderbird doesn't like the profile name to be specified.
7 lines
173 B
Nix
7 lines
173 B
Nix
{ pkgs, config, lib, ... }: {
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
#settings = { mailnews.wraplength = 80; };
|
|
profiles.nico = { isDefault = true; };
|
|
};
|
|
}
|