docs: signal-desktop

This commit is contained in:
Daniel Langbein 2023-10-20 15:01:39 +02:00
parent 145e12ac6c
commit 452d427ed8
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -13,9 +13,9 @@
# TODO: lib.mkIf (config.services.xserver.displayManager.gdm.wayland) # TODO: lib.mkIf (config.services.xserver.displayManager.gdm.wayland)
# TODO: Signal on Wayland without crash. # TODO: Signal on Wayland without frequent crashes.
# Signal does also use the NIXOS_OZONE_WL variable to enable Wayland support. # Signal does also use the NIXOS_OZONE_WL variable to enable Wayland support.
# However, it does currently crash in this mode. # However, it does currently crash (very often) in this mode.
# See # See
# https://github.com/stelcodes/nixos-config/commit/79071d30912c5b6c2560654925bcc98533cf758f # https://github.com/stelcodes/nixos-config/commit/79071d30912c5b6c2560654925bcc98533cf758f
# https://github.com/NixOS/nixpkgs/pull/222163 # https://github.com/NixOS/nixpkgs/pull/222163
@ -32,7 +32,7 @@
# signal-desktop-beta --use-tray-icon --enable-features=UseOzonePlatform --ozone-platform=wayland # signal-desktop-beta --use-tray-icon --enable-features=UseOzonePlatform --ozone-platform=wayland
# #
# https://github.com/NixOS/nixpkgs/issues/222043#issuecomment-1493457041 # https://github.com/NixOS/nixpkgs/issues/222043#issuecomment-1493457041
nixpkgs.overlays = [ nixpkgs.overlays = lib.mkIf (config.services.xserver.displayManager.gdm.wayland) [
(self: super: { (self: super: {
signal-desktop-beta = super.signal-desktop-beta.overrideAttrs (old: { signal-desktop-beta = super.signal-desktop-beta.overrideAttrs (old: {
preFixup = old.preFixup + '' preFixup = old.preFixup + ''
@ -44,7 +44,7 @@
}); });
}) })
]; ];
# nixpkgs.overlays = [ # nixpkgs.overlays = lib.mkIf (config.services.xserver.displayManager.gdm.wayland) [
# (self: super: { # (self: super: {
# unstable.signal-desktop-beta = super.unstable.signal-desktop-beta.overrideAttrs (old: { # unstable.signal-desktop-beta = super.unstable.signal-desktop-beta.overrideAttrs (old: {
# preFixup = old.preFixup + '' # preFixup = old.preFixup + ''