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 | |
| parent | 20ac636eb8e5bfebc104d7a3653faa2a852fa3fd (diff) | |
add soju
| -rw-r--r-- | hosts/cloud/default.nix | 1 | ||||
| -rw-r--r-- | hosts/cloud/irc.nix | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/hosts/cloud/default.nix b/hosts/cloud/default.nix index 0c2dbca..e830ff9 100644 --- a/hosts/cloud/default.nix +++ b/hosts/cloud/default.nix @@ -3,6 +3,7 @@ imports = [ ./configuration.nix ./hardware-configuration.nix + ./irc.nix ./networking.nix ./proxy ]; 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 ]; +} |
