mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
6ce326cef9
Freenode was taken over by a wannabe bitcoin millionaire [1], which prompted the migration of communities to Libera Chat and OFTC [2]. [1] https://blog.bofh.it/debian/id_461 [2] https://hackaday.com/2021/05/20/freenode-debacle-prompts-staff-exodus-new-network/
61 lines
1.6 KiB
Nix
61 lines
1.6 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
programs.hexchat = {
|
|
enable = true;
|
|
overwriteConfigFiles = true;
|
|
channels = {
|
|
oftc = {
|
|
charset = "UTF-8 (Unicode)";
|
|
userName = "user";
|
|
password = "password";
|
|
loginMethod = "sasl";
|
|
nickname = "user";
|
|
nickname2 = "user_";
|
|
realName = "real_user";
|
|
options = {
|
|
autoconnect = true;
|
|
forceSSL = true;
|
|
};
|
|
servers = [ "irc.oftc.net" ];
|
|
autojoin = [ "#home-manager" ];
|
|
};
|
|
efnet = {
|
|
options = { forceSSL = true; };
|
|
servers = [
|
|
"irc.choopa.net"
|
|
"irc.colosolutions.net"
|
|
"irc.mzima.net"
|
|
"irc.prison.net"
|
|
];
|
|
autojoin = [ "#computers" ];
|
|
};
|
|
};
|
|
settings = {
|
|
dcc_dir = "/home/user/Downloads";
|
|
irc_nick1 = "user";
|
|
irc_nick2 = "user_";
|
|
irc_nick3 = "user__";
|
|
irc_user_name = "user";
|
|
irc_real_name = "real user";
|
|
text_font = "Monospace 14";
|
|
text_font_main = "Monospace 14";
|
|
gui_slist_skip = "1"; # Skip network list on start-up
|
|
gui_quit_dialog = "0";
|
|
};
|
|
};
|
|
|
|
test.stubs.hexchat = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/hexchat/hexchat.conf \
|
|
${./basic-configuration-expected-main-config}
|
|
assertFileContent \
|
|
home-files/.config/hexchat/servlist.conf \
|
|
${./basic-configuration-expected-serverlist-config}
|
|
'';
|
|
};
|
|
|
|
}
|