diff options
Diffstat (limited to 'hosts/cloud/irc.nix')
| -rw-r--r-- | hosts/cloud/irc.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/hosts/cloud/irc.nix b/hosts/cloud/irc.nix new file mode 100644 index 0000000..d39a2e9 --- /dev/null +++ b/hosts/cloud/irc.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: +{ + services.soju = { + enable = true; + listen = [ + "irc+insecure://10.89.87.1" + "irc+insecure://[fd31:185d:722e::1]" + ]; + }; + + environment.systemPackages = [ pkgs.soju ]; +} |
