-
Notifications
You must be signed in to change notification settings - Fork 2
/
module.nix
118 lines (103 loc) · 2.74 KB
/
module.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.querolerbot;
settingsFormat = pkgs.formats.toml {};
in {
options.services.querolerbot = {
enable = mkEnableOption "querolerbot service";
package = mkOption {
type = types.package;
default = pkgs.querolerbot;
};
user = mkOption {
type = types.str;
default = "querolerbot";
};
home = mkOption {
type = types.str;
default = "/var/querolerbot/";
};
configFile = mkOption {
type = types.str;
default = "/etc/querolerbot.toml";
};
credentials = mkOption {
type = types.submodule {
options = {
accessKey = mkOption {
type = types.str;
};
accessSecret = mkOption {
type = types.str;
};
consumerKey = mkOption {
type = types.str;
};
consumerSecret = mkOption {
type = types.str;
};
token = mkOption {
type = types.str;
};
};
};
};
settings = mkOption {
type = settingsFormat.type;
default = {};
};
};
config = mkIf cfg.enable {
services.querolerbot.settings = {
general.delay = mkDefault 15;
twitter = {
username = mkDefault "querolerbot";
api_url = mkDefault "https://api.twitter.com/";
};
telegraph = {
username = mkDefault "@querolerbot";
url = mkDefault "https://graph.org/";
};
messages = {
success = mkDefault [
"Aqui está seu artigo sem paywall :)"
"Bip, bop"
"Saindo do forno ;)"
"Tá sentindo? Cherinho de artigo sem paywall <3"
"Ahoy"
"Hello There..."
];
error = {
url_not_found = mkDefault "Não achei nenhum link :(";
text_not_found = mkDefault "Infelizmente não consegui encontrar o texto ou o site ainda não é suportado :(\nVeja os sites compatíveis no meu perfil :)";
};
};
database = {
name = mkDefault "articles.db";
};
};
environment.etc."querolerbot.toml".source =
settingsFormat.generate "config.toml" cfg.settings;
users.users.${cfg.user} = {
inherit (cfg) home;
isSystemUser = true;
group = cfg.user;
createHome = true;
};
users.groups.${cfg.user} = {};
systemd.services.querolerbot = {
description = "QueroLerBot";
wantedBy = [ "multi-user.target" ];
environment = {
QUEROLER_CONFIG_PATH = "/etc/querolerbot.toml";
};
serviceConfig = {
ExecStart = "${cfg.package}/bin/querolerbot";
Restart = "on-failure";
User = cfg.user;
};
reloadIfChanged = true;
};
};
}