diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-17 01:53:31 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-17 01:53:31 +0200 |
commit | ffb14c1c25280777f5db3d2129c48dd319381f65 (patch) | |
tree | e17bbe7701a38ff5afbd6ebbe7a597c72d1539f3 /nixops/modules/irc.nix | |
parent | 9ade8f6eb774dc7d19d82a070199b5024786b819 (diff) | |
download | Nix-ffb14c1c25280777f5db3d2129c48dd319381f65.tar.gz Nix-ffb14c1c25280777f5db3d2129c48dd319381f65.tar.zst Nix-ffb14c1c25280777f5db3d2129c48dd319381f65.zip |
Move irc services to modules
Diffstat (limited to 'nixops/modules/irc.nix')
-rw-r--r-- | nixops/modules/irc.nix | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/nixops/modules/irc.nix b/nixops/modules/irc.nix deleted file mode 100644 index 363bfef..0000000 --- a/nixops/modules/irc.nix +++ /dev/null | |||
@@ -1,48 +0,0 @@ | |||
1 | { lib, pkgs, config, myconfig, ... }: | ||
2 | { | ||
3 | options = { | ||
4 | services.irc.enable = lib.mkOption { | ||
5 | type = lib.types.bool; | ||
6 | default = false; | ||
7 | description = '' | ||
8 | Whether to enable irc stuff. | ||
9 | ''; | ||
10 | }; | ||
11 | }; | ||
12 | |||
13 | config = lib.mkIf config.services.irc.enable { | ||
14 | security.acme.certs."irc" = config.services.myCertificates.certConfig // { | ||
15 | domain = "irc.immae.eu"; | ||
16 | postRun = '' | ||
17 | systemctl restart stunnel.service | ||
18 | ''; | ||
19 | }; | ||
20 | |||
21 | networking.firewall.allowedTCPPorts = [ 6697 ]; | ||
22 | services.bitlbee = { | ||
23 | enable = true; | ||
24 | authMode = "Registered"; | ||
25 | libpurple_plugins = [ | ||
26 | pkgs.purple-hangouts | ||
27 | pkgs.purple-matrix | ||
28 | ]; | ||
29 | plugins = [ | ||
30 | pkgs.bitlbee-mastodon | ||
31 | pkgs.bitlbee-facebook | ||
32 | pkgs.bitlbee-discord | ||
33 | pkgs.bitlbee-steam | ||
34 | ]; | ||
35 | }; | ||
36 | |||
37 | services.stunnel = { | ||
38 | enable = true; | ||
39 | servers = { | ||
40 | bitlbee = { | ||
41 | accept = 6697; | ||
42 | connect = 6667; | ||
43 | cert = "${config.security.acme.directory}/irc/full.pem"; | ||
44 | }; | ||
45 | }; | ||
46 | }; | ||
47 | }; | ||
48 | } | ||