2023-10-18 13:29:14 +02:00
{ 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.
2024-11-17 22:28:51 +01:00
#
# NixOS: /home/yoda/.config/Element /home/yoda/.config/Riot
# Flatpak: /home/yoda/.var/app/im.riot.Riot/config/Element
#
# Workaround:
# - Login with Flatpak version
# - Delete .config/Element and .config/Riot
# - Copy Flatpak into .config/Element
# - Start the NixOS version, you should be logged in :D
2024-10-29 10:47:50 +01:00
# TODO: Application not found in GNOME app list. Maybe .desktop file missing? Maybe that causes the above error?
2023-10-18 13:29:14 +02:00
users . users . yoda = {
packages = with pkgs ; [
2023-12-21 17:14:55 +01:00
# Matrix chat client.
(
if ( config . services . xserver . displayManager . gdm . wayland )
2024-11-17 21:47:03 +01:00
then unstable . element-desktop-wayland
else unstable . element-desktop
2023-12-21 17:14:55 +01:00
)
2023-10-18 13:29:14 +02:00
] ;
} ;
}