mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
nixos/jmusicbot: init
This commit is contained in:
parent
3b5ce3144b
commit
d8a43688c9
2 changed files with 42 additions and 0 deletions
|
@ -231,6 +231,7 @@
|
||||||
./services/audio/alsa.nix
|
./services/audio/alsa.nix
|
||||||
./services/audio/jack.nix
|
./services/audio/jack.nix
|
||||||
./services/audio/icecast.nix
|
./services/audio/icecast.nix
|
||||||
|
./services/audio/jmusicbot.nix
|
||||||
./services/audio/liquidsoap.nix
|
./services/audio/liquidsoap.nix
|
||||||
./services/audio/mpd.nix
|
./services/audio/mpd.nix
|
||||||
./services/audio/mpdscribble.nix
|
./services/audio/mpdscribble.nix
|
||||||
|
|
41
nixos/modules/services/audio/jmusicbot.nix
Normal file
41
nixos/modules/services/audio/jmusicbot.nix
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
{ 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";
|
||||||
|
|
||||||
|
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" ];
|
||||||
|
after = [ "network-online.target" ];
|
||||||
|
description = "Discord music bot that's easy to set up and run yourself!";
|
||||||
|
serviceConfig = mkMerge [{
|
||||||
|
ExecStart = "${pkgs.jmusicbot}/bin/JMusicBot";
|
||||||
|
WorkingDirectory = cfg.stateDir;
|
||||||
|
Restart = "always";
|
||||||
|
RestartSec = 20;
|
||||||
|
DynamicUser = true;
|
||||||
|
}
|
||||||
|
(mkIf (cfg.stateDir == "/var/lib/jmusicbot") { StateDirectory = "jmusicbot"; })];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
meta.maintainers = with maintainers; [ SuperSandro2000 ];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue