2021-03-27 23:33:22 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.jmusicbot;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.jmusicbot = {
|
|
|
|
enable = mkEnableOption "jmusicbot, a Discord music bot that's easy to set up and run yourself";
|
|
|
|
|
2023-11-27 01:19:27 +01:00
|
|
|
package = mkPackageOption pkgs "jmusicbot" { };
|
2022-02-11 00:08:58 +01:00
|
|
|
|
2021-03-27 23:33:22 +01:00
|
|
|
stateDir = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
description = ''
|
|
|
|
The directory where config.txt and serversettings.json is saved.
|
|
|
|
If left as the default value this directory will automatically be created before JMusicBot starts, otherwise the sysadmin is responsible for ensuring the directory exists with appropriate ownership and permissions.
|
|
|
|
Untouched by the value of this option config.txt needs to be placed manually into this directory.
|
|
|
|
'';
|
|
|
|
default = "/var/lib/jmusicbot/";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.jmusicbot = {
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2023-10-04 07:21:50 +02:00
|
|
|
wants = [ "network-online.target" ];
|
2021-03-27 23:33:22 +01:00
|
|
|
after = [ "network-online.target" ];
|
|
|
|
description = "Discord music bot that's easy to set up and run yourself!";
|
|
|
|
serviceConfig = mkMerge [{
|
2022-02-11 00:08:58 +01:00
|
|
|
ExecStart = "${cfg.package}/bin/JMusicBot";
|
2021-03-27 23:33:22 +01:00
|
|
|
WorkingDirectory = cfg.stateDir;
|
|
|
|
Restart = "always";
|
|
|
|
RestartSec = 20;
|
|
|
|
DynamicUser = true;
|
|
|
|
}
|
|
|
|
(mkIf (cfg.stateDir == "/var/lib/jmusicbot") { StateDirectory = "jmusicbot"; })];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-07-28 16:44:11 +02:00
|
|
|
meta.maintainers = [ ];
|
2021-03-27 23:33:22 +01:00
|
|
|
}
|