Files
Menno van Leeuwen 2c0e3c746b
All checks were successful
Nix Format Check / check-format (push) Successful in 38s
upgrade to 24.11
2024-11-29 18:02:30 +01:00

13 lines
156 B
Nix

{ config, pkgs, ... }:
{
programs.thunderbird = {
enable = true;
profiles = {
default = {
isDefault = true;
};
};
};
}