17 lines
448 B
Nix
17 lines
448 B
Nix
{ pkgs, ... }: {
|
|
systemd.services.mc-status-bot = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
description = "Minecraft server status bot for Matrix";
|
|
after = [ "network.target" ];
|
|
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
ExecStart = "${
|
|
pkgs.callPackage ../pkgs/mc-status-bot.nix { }
|
|
}/bin/mc-status-bot.sh";
|
|
EnvironmentFile = "/var/lib/secrets/mc-status-bot-env";
|
|
Restart = "always";
|
|
};
|
|
};
|
|
}
|