9 lines
200 B
Nix
9 lines
200 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
profiles.default = {
|
|
isDefault = true;
|
|
};
|
|
};
|
|
}
|