m 1 gum: add newsbot deployment

This commit is contained in:
makefu 2017-04-24 23:21:28 +02:00
parent 4144cff1a1
commit 96fcce0e7c
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 19 additions and 0 deletions

View File

@ -27,6 +27,7 @@ in {
## Web
../2configs/deployment/owncloud.nix
../2configs/deployment/newsbot.nix
../2configs/nginx/share-download.nix
../2configs/nginx/euer.test.nix
../2configs/nginx/euer.wiki.nix

View File

@ -0,0 +1,18 @@
{ config, pkgs, ... }:
let
newsfile = pkgs.writeText "feeds" ''
nixoswiki-bot|https://github.com/Mic92/nixos-wiki/wiki.atom|#krebs
'';
in {
environment.systemPackages = [
pkgs.newsbot-js
];
krebs.newsbot-js = {
enable = true;
ircServer = "chat.freenode.net";
feeds = newsfile;
urlShortenerHost = "go";
urlShortenerPort = "80";
};
}