diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-10-15 19:13:45 +0000 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-10-16 23:23:52 +0200 |
| commit | e5957fa18a322338b2f75afd62e32cdb84143236 (patch) | |
| tree | 134f8e1d03eee4579dd1f6840612b7946756a744 /profiles/station | |
| parent | 5a4b25d98a32ba539e8085d8fef32039f410fae8 (diff) | |
add irc.nix
Diffstat (limited to 'profiles/station')
| -rw-r--r-- | profiles/station/irc.nix | 22 |
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; + }; + }; +} |
