thudnerbird

This commit is contained in:
Sakooooo 2024-11-03 15:32:08 +04:00
parent 2c71867071
commit 2317f427ae
Signed by: sako
GPG key ID: FE52FD65B76E4751
2 changed files with 13 additions and 0 deletions

View file

@ -11,5 +11,6 @@
./gajim ./gajim
./pidgin ./pidgin
./psiplus ./psiplus
./thunderbird
]; ];
} }

View file

@ -0,0 +1,12 @@
{ 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 ];
};
}