1
0
mirror of https://github.com/kmein/niveum synced 2026-03-30 09:11:10 +02:00

chore: catullus -> toum

This commit is contained in:
Kierán Meinhardt
2020-10-18 14:02:14 +02:00
parent 0ff450138f
commit 2106247cf5
9 changed files with 17 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
{ pkgs, lib, ... }:
let
scripts = import <niveum/packages/scripts> { inherit pkgs lib; };
inherit (scripts) literature-quote;
in {
niveum.telegramBots.quotebot = {
enable = true;
time = "08/6:00";
token = lib.strings.fileContents <system-secrets/telegram/kmein.token>;
chatIds = [ "18980945" "757821027" "455964311" ];
command = "${literature-quote}/bin/literature-quote";
parseMode = "Markdown";
};
}