diff options
| author | Grigory Shipunov | 2025-02-05 20:15:25 +0000 |
|---|---|---|
| committer | Grigory Shipunov | 2025-02-05 20:15:25 +0000 |
| commit | 5e7e8b557405d47f4962a370bde2adcc85730d11 (patch) | |
| tree | a723fa82b7888b100699ae236ba4d6b5cadba317 /hosts/cloud/irc.nix | |
| parent | 20ac636eb8e5bfebc104d7a3653faa2a852fa3fd (diff) | |
add soju
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 ]; +} |
