From d7d4160d21266437c69bfbce444419679145596f Mon Sep 17 00:00:00 2001 From: Aria Nolan Date: Wed, 10 Jan 2024 19:29:26 -0500 Subject: [PATCH] tiny IRC --- users/tacocat/programs/default.nix | 1 + users/tacocat/programs/tiny.nix | 32 ++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 users/tacocat/programs/tiny.nix diff --git a/users/tacocat/programs/default.nix b/users/tacocat/programs/default.nix index 8be9f22..db2bc7a 100644 --- a/users/tacocat/programs/default.nix +++ b/users/tacocat/programs/default.nix @@ -7,6 +7,7 @@ ./vscode.nix ./fzf.nix ./tmux.nix + ./tiny.nix ]; programs.eza = { diff --git a/users/tacocat/programs/tiny.nix b/users/tacocat/programs/tiny.nix new file mode 100644 index 0000000..4f0c7ba --- /dev/null +++ b/users/tacocat/programs/tiny.nix @@ -0,0 +1,32 @@ +{...}: { + programs.tiny = { + enable = true; + settings = { + servers = [ + { + addr = "irc.libera.chat"; + port = 6697; + tls = true; + nicks = ["tacocatgirl"]; + realname = "Aria Nolan"; + join = []; + } + + { + addr = "irc.freenode.net"; + port = 6697; + tls = true; + nicks = ["tacocatgirl"]; + realname = "Aria Nolan"; + join = []; + } + ]; + defaults = { + nicks = ["tacocatgirl"]; + realname = "Aria Nolan"; + join = []; + tls = true; + }; + }; + }; +}