2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
88 lines
2.2 KiB
Nix
88 lines
2.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.serviio;
|
|
|
|
serviioStart = pkgs.writeScript "serviio.sh" ''
|
|
#!${pkgs.bash}/bin/sh
|
|
|
|
SERVIIO_HOME=${pkgs.serviio}
|
|
|
|
# Setup the classpath
|
|
SERVIIO_CLASS_PATH="$SERVIIO_HOME/lib/*:$SERVIIO_HOME/config"
|
|
|
|
# Setup Serviio specific properties
|
|
JAVA_OPTS="-Djava.net.preferIPv4Stack=true -Djava.awt.headless=true -Dorg.restlet.engine.loggerFacadeClass=org.restlet.ext.slf4j.Slf4jLoggerFacade
|
|
-Dderby.system.home=${cfg.dataDir}/library -Dserviio.home=${cfg.dataDir} -Dffmpeg.location=${pkgs.ffmpeg}/bin/ffmpeg -Ddcraw.location=${pkgs.dcraw}/bin/dcraw"
|
|
|
|
# Execute the JVM in the foreground
|
|
exec ${pkgs.jre}/bin/java -Xmx512M -Xms20M -XX:+UseG1GC -XX:GCTimeRatio=1 -XX:MinHeapFreeRatio=10 -XX:MaxHeapFreeRatio=20 $JAVA_OPTS -classpath "$SERVIIO_CLASS_PATH" org.serviio.MediaServer "$@"
|
|
'';
|
|
|
|
in {
|
|
|
|
###### interface
|
|
options = {
|
|
services.serviio = {
|
|
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Whether to enable the Serviio Media Server.
|
|
'';
|
|
};
|
|
|
|
dataDir = mkOption {
|
|
type = types.path;
|
|
default = "/var/lib/serviio";
|
|
description = lib.mdDoc ''
|
|
The directory where serviio stores its state, data, etc.
|
|
'';
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.serviio = {
|
|
description = "Serviio Media Server";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
path = [ pkgs.serviio ];
|
|
serviceConfig = {
|
|
User = "serviio";
|
|
Group = "serviio";
|
|
ExecStart = "${serviioStart}";
|
|
ExecStop = "${serviioStart} -stop";
|
|
};
|
|
};
|
|
|
|
users.users.serviio =
|
|
{ group = "serviio";
|
|
home = cfg.dataDir;
|
|
description = "Serviio Media Server User";
|
|
createHome = true;
|
|
isSystemUser = true;
|
|
};
|
|
|
|
users.groups.serviio = { };
|
|
|
|
networking.firewall = {
|
|
allowedTCPPorts = [
|
|
8895 # serve UPnP responses
|
|
23423 # console
|
|
23424 # mediabrowser
|
|
];
|
|
allowedUDPPorts = [
|
|
1900 # UPnP service discovey
|
|
];
|
|
};
|
|
};
|
|
}
|