This commit is contained in:
Grigory Shipunov 2025-02-05 20:15:25 +00:00
parent 20ac636eb8
commit 5e7e8b5574
2 changed files with 13 additions and 0 deletions

View file

@ -3,6 +3,7 @@
imports = [
./configuration.nix
./hardware-configuration.nix
./irc.nix
./networking.nix
./proxy
];

12
hosts/cloud/irc.nix Normal file
View file

@ -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 ];
}