add soju
This commit is contained in:
parent
20ac636eb8
commit
5e7e8b5574
2 changed files with 13 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
imports = [
|
||||
./configuration.nix
|
||||
./hardware-configuration.nix
|
||||
./irc.nix
|
||||
./networking.nix
|
||||
./proxy
|
||||
];
|
||||
|
|
12
hosts/cloud/irc.nix
Normal file
12
hosts/cloud/irc.nix
Normal 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 ];
|
||||
}
|
Loading…
Add table
Reference in a new issue