18 lines
442 B
Nix
18 lines
442 B
Nix
|
{ hydractify-bot, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
systemd.user.services.hydractify-bot = {
|
||
|
Install.WantedBy = [ "default.target" ];
|
||
|
|
||
|
Unit.Description = "Hydractify bot";
|
||
|
Unit.After = "postgresql.service";
|
||
|
|
||
|
Service = {
|
||
|
ExecStart = "${hydractify-bot.defaultPackage.${pkgs.system}}/bin/hydractify";
|
||
|
Restart = "on-failure";
|
||
|
Type = "simple";
|
||
|
WorkingDirectory = "/mnt/internal/hydractify/GitHub/hydractify";
|
||
|
};
|
||
|
};
|
||
|
}
|