11 lines
136 B
Nix
11 lines
136 B
Nix
|
|
{...}: {
|
||
|
|
programs.thunderbird = {
|
||
|
|
enable = true;
|
||
|
|
profiles = {
|
||
|
|
"me" = {
|
||
|
|
isDefault = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|