Jump to content

Weechat: Difference between revisions

no edit summary
(link to manual added)
No edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:


This article is an extension to the documentation in the [https://nixos.org/manual/nixos/stable/#module-services-weechat NixOS manual].
This article is an extension to the documentation in the [https://nixos.org/manual/nixos/stable/#module-services-weechat NixOS manual].
== Module ==
To use WeeChat using the NixOS module, you should note that additional configuration is required. This is because of the screen security wrapper.
<syntaxhighlight lang="nix">
  services.weechat.enable = true;
  programs.screen.screenrc = ''
    multiuser on
    acladd USER # TODO: change to your local user
    term screen-256color
  '';
</syntaxhighlight>
After that you may attach the screen session using <code>$ screen -x weechat/weechat-screen</code>.


== Scripts ==
== Scripts ==
2

edits