hexchat.scm
1 | (define-module (home-config hexchat) |
2 | #:use-module (home) |
3 | #:use-module (home hexchat) |
4 | #:export (hexchat-home)) |
5 | |
6 | (define hexchat-home |
7 | (user-home hexchat-home-type |
8 | (hexchat-configuration |
9 | (servlist |
10 | (list |
11 | (hexchat-server |
12 | (name "ZNC") |
13 | (servers '("lepiller.eu/6697")) |
14 | (flags '(cycle global honor-proxy ssl favorite |
15 | allow-invalid-certificates))))) |
16 | (log-dir "/data/tyreunom/.local/share/hexchat/logs") |
17 | (scrollback-dir "/data/tyreunom/.local/share/hexchat/scrollback")))) |
18 |