All checks were successful
Nix Format Check / check-format (push) Successful in 38s
13 lines
156 B
Nix
13 lines
156 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
profiles = {
|
|
default = {
|
|
isDefault = true;
|
|
};
|
|
};
|
|
};
|
|
}
|