re enable thunderbird in home manager

This commit is contained in:
Chris Kruining 2025-07-31 09:19:34 +02:00
parent 8282155619
commit 80c3873cf3
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
3 changed files with 8 additions and 23 deletions

View file

@ -1,17 +0,0 @@
{ config, lib, namespace, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.application.thunderbird;
in
{
options.${namespace}.application.thunderbird = {
enable = mkEnableOption "enable thunderbird";
};
config = mkIf cfg.enable {
programs.thunderbird = {
enable = true;
};
};
}