vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / services / audio / jmusicbot.nix
blobd1317facf273f3a046d61b1e78c1c1ea5d293f5d
1 { config, lib, pkgs, ... }:
3 with lib;
4 let
5   cfg = config.services.jmusicbot;
6 in
8   options = {
9     services.jmusicbot = {
10       enable = mkEnableOption "jmusicbot, a Discord music bot that's easy to set up and run yourself";
12       package = mkPackageOption pkgs "jmusicbot" { };
14       stateDir = mkOption {
15         type = types.path;
16         description = ''
17           The directory where config.txt and serversettings.json is saved.
18           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.
19           Untouched by the value of this option config.txt needs to be placed manually into this directory.
20         '';
21         default = "/var/lib/jmusicbot/";
22       };
23     };
24   };
26   config = mkIf cfg.enable {
27     systemd.services.jmusicbot = {
28       wantedBy = [ "multi-user.target" ];
29       wants = [ "network-online.target" ];
30       after = [ "network-online.target" ];
31       description = "Discord music bot that's easy to set up and run yourself!";
32       serviceConfig = mkMerge [{
33         ExecStart = "${cfg.package}/bin/JMusicBot";
34         WorkingDirectory = cfg.stateDir;
35         Restart = "always";
36         RestartSec = 20;
37         DynamicUser = true;
38       }
39         (mkIf (cfg.stateDir == "/var/lib/jmusicbot") { StateDirectory = "jmusicbot"; })];
40     };
41   };
43   meta.maintainers = [ ];