Slack: Difference between revisions
imported>Truthadjustr Created page with "'''How to Install the Slack chat client''' To install the chat client, do: nix-env -iA nixos.slack To launch or run the chat client, do slack And remember, because this i..." |
PokumeKachi (talk | contribs) m Removed xdg.portal.gtkUsePortal option due to it no longer having any effect. (The feature was removed due to being unsupported and discouraged by GTK devs) |
||
| (10 intermediate revisions by 7 users not shown) | |||
| Line 1: | Line 1: | ||
{{tip/unfree}} | |||
[https://slack.com/ Slack] is a communication platform with a desktop application based on Electron. | |||
== Installation == | |||
=== NixOS === | |||
<syntaxHighlight lang="nix"> | |||
environment.systemPackages = with pkgs; [ slack ]; | |||
</syntaxHighlight> | |||
== Tips == | |||
=== Wayland === | |||
You can enable native Wayland support by launching Slack as: | |||
<syntaxHighlight lang="console"> | |||
$ NIXOS_OZONE_WL=1 slack | |||
</syntaxHighlight> | |||
... or by simply specifying this option globally: | |||
<syntaxHighlight lang="nix"> | |||
environment.sessionVariables.NIXOS_OZONE_WL = "1"; | |||
</syntaxHighlight> | |||
If you want to use screen-sharing, you'll have to enable <code>xdg-desktop-portal</code>, too: | |||
<syntaxhighlight lang="nix"> | |||
xdg = { | |||
portal = { | |||
enable = true; | |||
extraPortals = with pkgs; [ | |||
xdg-desktop-portal-wlr | |||
xdg-desktop-portal-gtk | |||
]; | |||
}; | |||
}; | |||
</syntaxhighlight> | |||
==== Window decorations ==== | |||
If the above configuration leaves you without window decorations you may want to enable this feature as well: | |||
<syntaxHighlight lang="console"> | |||
WaylandWindowDecorations | |||
</syntaxHighlight> | |||
[[Category:Applications]] | |||