12 lines
141 B
Nix
12 lines
141 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
profiles.autumn = {
|
|
isDefault = true;
|
|
|
|
};
|
|
};
|
|
}
|