8 lines
107 B
Nix
8 lines
107 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
package = pkgs.thunderbird-esr;
|
|
};
|
|
}
|