summaryrefslogtreecommitdiffstats
path: root/2configs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2021-01-27 23:01:44 +0100
committermakefu <github@syntax-fehler.de>2021-01-27 23:01:44 +0100
commit2c9e66c5110cdbb922f7b9984f201a6f2f52ce8d (patch)
treed98296882c9964b408149cad105656dd52fa7943 /2configs
parentaf93e2f7e70c2470255f38facf0b02cb1fb0fb95 (diff)
ma newsbot: obsolete
Diffstat (limited to '2configs')
-rw-r--r--2configs/deployment/newsbot.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/2configs/deployment/newsbot.nix b/2configs/deployment/newsbot.nix
deleted file mode 100644
index 748803447..000000000
--- a/2configs/deployment/newsbot.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ 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";
- };
-}