summaryrefslogtreecommitdiff
path: root/profiles/station
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/station')
-rw-r--r--profiles/station/irc.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/profiles/station/irc.nix b/profiles/station/irc.nix
new file mode 100644
index 0000000..8e9cf8a
--- /dev/null
+++ b/profiles/station/irc.nix
@@ -0,0 +1,22 @@
+{...}: {
+ programs.tiny = {
+ enable = true;
+ settings = {
+ servers = [
+ {
+ addr = "irc.libera.chat";
+ port = 6697;
+ tls = true;
+ realname = "Mike Vink";
+ nicks = [ "ivi" ];
+ }
+ ];
+ };
+ defaults = {
+ nicks = [ "ivi" ];
+ realname = "Mike Vink";
+ join = [];
+ tls = true;
+ };
+ };
+}