10 lines
204 B
Nix
10 lines
204 B
Nix
{ pkgs, config, lib, ... }: {
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
#settings = { mailnews.wraplength = 80; };
|
|
profiles.nico = {
|
|
isDefault = true;
|
|
name = "nico";
|
|
};
|
|
};
|
|
}
|