Files
nix-dotfiles/home/programs/thunderbird.nix
2025-06-04 12:01:57 +02:00

17 lines
276 B
Nix

{ config, pkgs, lib, machineVars, ... }:
let
cfg = config.programs.thunderbird;
in
lib.mkIf cfg.enable {
programs.thunderbird = {
profiles.h7x4 = {
isDefault = true;
withExternalGnupg = true;
};
};
home.packages = with pkgs; [
birdtray
];
}