nixos-config/configs/workhorse/weechat.nix
2019-10-24 02:24:33 +02:00

21 lines
395 B
Nix

{ config, pkgs, lib, ... }:
# how to setup a relay
# * ssh on the maching
# * sudo -u weechat screen -r
# /set relay.network.password "mypassword"
# /relay add weechat 10000
{
services.weechat = {
enable = true;
};
# otherwise xterm is the only thing that works
environment.systemPackages = [ pkgs.rxvt_unicode ];
backup.all.restic.dirs = [ config.services.weechat.root ];
}