Gabe Venberg
57252af57b
This involved setting up the pass password manager to manage secrets, which in turn required setting up gpg, which needed syncthing to sync keys.
39 lines
675 B
Nix
39 lines
675 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.tiny = {
|
|
enable = true;
|
|
settings = {
|
|
servers = [
|
|
{
|
|
addr = "irc.libera.chat";
|
|
port = 6697;
|
|
tls = true;
|
|
realname = "Gabe Venberg";
|
|
nicks = ["toric"];
|
|
join = [
|
|
"#libera"
|
|
"#linux"
|
|
"#lobsters"
|
|
"#nixos"
|
|
];
|
|
sasl = {
|
|
username="toric";
|
|
password={
|
|
command= "pass show libera";
|
|
};
|
|
};
|
|
}
|
|
];
|
|
defaults = {
|
|
nicks = ["toric"];
|
|
realname = "Gabe Venberg";
|
|
tls = true;
|
|
};
|
|
};
|
|
};
|
|
}
|