blob: 2698ba5b9ebdf14262cce6ca1c830f72f6d4f975 (
plain)
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
|
{ config, pkgs, lib, ... }:
let
inherit (builtins) toString;
inherit (lib) types mkOption mkEnableOption mkIf hasPrefix
concatStrings optionalString;
inherit (types) str path int nullOr;
cfg = config.nixsap.apps.mywatch;
ExecStart = concatStrings [
"${pkgs.mywatch}/bin/mywatch"
(if (cfg.port != null)
then " -p ${toString cfg.port}"
else " -s '${cfg.socket}'")
" '${cfg.myFile}'"
];
in {
options.nixsap.apps.mywatch = {
enable = mkEnableOption "MyWatch";
user = mkOption {
description = "User to run as";
default = "mywatch";
type = str;
};
port = mkOption {
description = "TCP port to listen on (insecure)";
default = null;
type = nullOr int;
};
socket = mkOption {
description = "UNIX socket to listen on. Ignored when TCP port is set";
default = "/tmp/mywatch.sock";
type = path;
};
myFile = mkOption {
description = "MySQL client configuration file";
type = path;
};
};
config = mkIf cfg.enable {
nixsap.system.users.daemons = [ cfg.user ];
nixsap.deployment.keyrings.${cfg.user} = [ cfg.myFile ];
systemd.services.mywatch = {
description = "watch queries on multiple MySQL servers";
wantedBy = [ "multi-user.target" ];
wants = [ "keys.target" ];
after = [ "keys.target" "network.target" ];
serviceConfig = {
inherit ExecStart;
User = cfg.user;
Restart = "on-failure";
};
};
};
}
|