2024-11-30 22:39:45 +04:00
|
|
|
{ outputs, options, config, lib, pkgs, ... }:
|
|
|
|
let cfg = config.modules.desktop.chat.element;
|
2024-09-02 11:19:46 +04:00
|
|
|
in {
|
2024-11-30 22:39:45 +04:00
|
|
|
options.modules.desktop.chat.element = { enable = lib.mkEnableOption false; };
|
2024-09-02 11:19:46 +04:00
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
2024-11-30 22:39:45 +04:00
|
|
|
users.users.sako.packages = with pkgs.stable; [ element-desktop-wayland ];
|
2024-09-02 11:19:46 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
}
|