mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
45 lines
511 B
Text
45 lines
511 B
Text
settings = {
|
|
core = {
|
|
settings_autosave = "no";
|
|
};
|
|
};
|
|
|
|
aliases = {
|
|
|
|
};
|
|
|
|
chatnets = {
|
|
oftc = {
|
|
type = "IRC";
|
|
nick = "nick";
|
|
autosendcmd = "";
|
|
sasl_username = "nick";
|
|
sasl_mechanism = "EXTERNAL";
|
|
};
|
|
|
|
};
|
|
|
|
servers = (
|
|
{
|
|
chatnet = "oftc";
|
|
address = "irc.oftc.net";
|
|
port = "6697";
|
|
use_ssl = "yes";
|
|
ssl_verify = "yes";
|
|
autoconnect = "yes";
|
|
ssl_cert = "/home/hm-user/.irssi/certs/nick.pem";
|
|
|
|
}
|
|
|
|
);
|
|
|
|
channels = (
|
|
{
|
|
chatnet = "oftc";
|
|
name = "home-manager";
|
|
autojoin = "yes";
|
|
}
|
|
|
|
);
|
|
|
|
|