diff options
author | William Carroll <wpcarro@gmail.com> | 2020-06-30T16·55+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-06-30T16·55+0100 |
commit | 4d577bd8a9521aae77fde3eb4f90164835942237 (patch) | |
tree | e1dedbeb43260b7965fe2f8d350e86cf8015b906 /nixos | |
parent | da24a38995b16001d2b403cb83c66f96df528637 (diff) |
Support bitlbee
I'm still not entirely sure what bitlbee does, but I know this: I want as many messengers in the same place as possible: IRC, Slack, Telegram. @tazjin tells me that Bitlbee will help me get to the promised land. This is hopefully one step of many in that direction.
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/socrates/configuration.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nixos/socrates/configuration.nix b/nixos/socrates/configuration.nix index 47b5d49d1ece..398ef7e8452c 100644 --- a/nixos/socrates/configuration.nix +++ b/nixos/socrates/configuration.nix @@ -79,6 +79,14 @@ in { # Services ############################################################################## + nixpkgs.config.bitlbee.enableLibPurple = true; + services.bitlbee = { + enable = true; + libpurple_plugins = [ + pkgs.telegram-purple + ]; + }; + services.openssh.enable = true; services.gitea = { |