nixos/modules/desktop/chat/thunderbird.nix
2024-11-03 15:32:08 +04:00

12 lines
289 B
Nix

{ outputs, options, config, lib, pkgs, ... }:
let cfg = config.modules.desktop.chat.thunderbird;
in {
options.modules.desktop.chat.thunderbird = {
enable = lib.mkEnableOption false;
};
config = lib.mkIf cfg.enable {
users.users.sako.packages = [ pkgs.thunderbird ];
};
}