solve todo

This commit is contained in:
Daniel Langbein 2024-11-21 22:05:45 +01:00
parent 30537331ec
commit 2d93fbf2c6
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
2 changed files with 10 additions and 10 deletions

View File

@ -46,7 +46,7 @@
../../modules/nextcloud-client.nix ../../modules/nextcloud-client.nix
../../modules/syncthing.nix ../../modules/syncthing.nix
../../modules/signal-desktop.nix ../../modules/signal-desktop.nix
#../../modules/element-desktop.nix ../../modules/element-desktop.nix
../../modules/obsidian.nix ../../modules/obsidian.nix
../../modules/vlc-dvd-blu-ray.nix ../../modules/vlc-dvd-blu-ray.nix
../../modules/firefox.nix ../../modules/firefox.nix

View File

@ -1,27 +1,27 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
{ {
# 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. # Issue: 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.
# #
# Configuration paths with user data:
# NixOS: /home/yoda/.config/Element /home/yoda/.config/Riot # NixOS: /home/yoda/.config/Element /home/yoda/.config/Riot
# Flatpak: /home/yoda/.var/app/im.riot.Riot/config/Element # Flatpak: /home/yoda/.var/app/im.riot.Riot/config/Element
# #
# Solution: Don't use element-desktop-wayland, use the normal element-desktop package instead
#
# Workaround: # Workaround:
# - Login with Flatpak version # - Login with Flatpak version
# - Delete .config/Element and .config/Riot # - Delete .config/Element and .config/Riot
# - Copy Flatpak into .config/Element # - Copy Flatpak into .config/Element
# - Start the NixOS version, you should be logged in :D # - Start the NixOS version, you should be logged in :D
# TODO: No visible UI on yodaTux (AMD Ryzen 4800H) # Issue: No visible UI on yodaTux (AMD Ryzen 4800H) when using unstable.element-desktop
# Console log:
# ac: Unknown GPU, using 0 for raster_config
# Cannot find target for triple amdgcn-- Unable to find target for this triple (no targets are registered)
#
# Workaround: Use Flatpak version ... # Workaround: Use Flatpak version ...
# Discussion on GitHub: https://github.com/NixOS/nixpkgs/issues/343806 AMD GPUs and NixOS - 'Cannot find target for triple amdgcn-- Unable to find target for this triple (no targets are registered)'
users.users.yoda = { users.users.yoda = {
packages = with pkgs; [ packages = with pkgs; [
# Matrix chat client. # Matrix chat client.
unstable.element-desktop element-desktop
]; ];
}; };
} }