-
Notifications
You must be signed in to change notification settings - Fork 14
/
module.nix
48 lines (46 loc) · 1.07 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
{ pkgs, config, lib, ... }:
let
cfg = config.traderjoes;
in
{
options.traderjoes = {
enable = lib.mkEnableOption "trader joes price fetching service";
workingDir = lib.mkOption {
type = lib.types.str;
description = "Directory to write price DB and site files.";
};
user = lib.mkOption {
type = lib.types.str;
};
};
config = lib.mkIf cfg.enable {
nixpkgs.overlays = [
(_: prev: {
traderjoes = prev.haskellPackages.callCabal2nix "traderjoes" ./. { };
})
];
systemd.timers.traderjoes = {
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "daily";
Persistent = false;
Unit = "traderjoes.service";
};
};
systemd.services.traderjoes = {
path = with pkgs; [
bash
glibc # needed by wrangler
nodePackages.wrangler
sqlite
traderjoes
];
serviceConfig = {
ExecStart = ./cron.bash;
Type = "oneshot";
User = cfg.user;
WorkingDirectory = cfg.workingDir;
};
};
};
}