nix-git/modules/element-desktop.nix

18 lines
561 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
{
2024-10-29 10:47:50 +01:00
# TODO: Login does not work. Webbrowser does not redirect back to Element app. Firefox does not ask to open link with Element app. It works with the Flatpak version though.
# TODO: Application not found in GNOME app list. Maybe .desktop file missing? Maybe that causes the above error?
users.users.yoda = {
packages = with pkgs; [
2023-12-21 17:14:55 +01:00
# Matrix chat client.
(
if (config.services.xserver.displayManager.gdm.wayland)
then element-desktop-wayland
else element-desktop
)
];
};
}