aboutsummaryrefslogtreecommitdiff
path: root/nixops/modules/irc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixops/modules/irc/default.nix')
-rw-r--r--nixops/modules/irc/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/nixops/modules/irc/default.nix b/nixops/modules/irc/default.nix
index 4cf27e5..a7e45ba 100644
--- a/nixops/modules/irc/default.nix
+++ b/nixops/modules/irc/default.nix
@@ -69,6 +69,12 @@ in
69 ''; 69 '';
70 }; 70 };
71 71
72 nixpkgs.config.packageOverrides = oldpkgs: rec {
73 bitlbee = oldpkgs.bitlbee.overrideAttrs(old: {
74 patches = (old.patches or []) ++ [ ./bitlbee_long_nicks.patch ];
75 });
76 };
77
72 networking.firewall.allowedTCPPorts = [ 6697 ]; 78 networking.firewall.allowedTCPPorts = [ 6697 ];
73 services.bitlbee = { 79 services.bitlbee = {
74 enable = true; 80 enable = true;