nix-config/modules/nix/comm/thunderbird.nix
2025-07-11 18:51:52 +02:00

18 lines
336 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.thunderbird.enable = mkOption {
type = types.bool;
default = false;
description = "thunderbird";
};
config = mkIf config.smayzy.thunderbird.enable {
environment.systemPackages = with pkgs; [
thunderbird
];
};
}