mirror of
https://github.com/tuxdotrs/tnvim.git
synced 2025-07-06 21:36:34 +05:30
15 lines
180 B
Nix
15 lines
180 B
Nix
{
|
|
pkgs,
|
|
username,
|
|
...
|
|
}: {
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
package = pkgs.betterbird;
|
|
|
|
profiles."${username}" = {
|
|
isDefault = true;
|
|
};
|
|
};
|
|
}
|