2014-11-20 22:30:24 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
streams = builtins.attrNames config.services.liquidsoap.streams;
|
|
|
|
|
|
|
|
streamService =
|
|
|
|
name:
|
|
|
|
let stream = builtins.getAttr name config.services.liquidsoap.streams; in
|
|
|
|
{ inherit name;
|
|
|
|
value = {
|
|
|
|
after = [ "network-online.target" "sound.target" ];
|
|
|
|
description = "${name} liquidsoap stream";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
path = [ pkgs.wget ];
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = "${pkgs.liquidsoap}/bin/liquidsoap ${stream}";
|
|
|
|
User = "liquidsoap";
|
2019-02-23 22:28:01 +00:00
|
|
|
LogsDirectory = "liquidsoap";
|
2023-08-11 11:51:27 +00:00
|
|
|
Restart = "always";
|
2014-11-20 22:30:24 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
|
|
|
|
##### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.liquidsoap.streams = mkOption {
|
|
|
|
|
|
|
|
description = ''
|
|
|
|
Set of Liquidsoap streams to start,
|
|
|
|
one systemd service per stream.
|
|
|
|
'';
|
|
|
|
|
|
|
|
default = {};
|
|
|
|
|
2022-11-03 14:52:19 +00:00
|
|
|
example = literalExpression ''
|
|
|
|
{
|
|
|
|
myStream1 = "/etc/liquidsoap/myStream1.liq";
|
|
|
|
myStream2 = ./myStream2.liq;
|
|
|
|
myStream3 = "out(playlist(\"/srv/music/\"))";
|
|
|
|
}
|
|
|
|
'';
|
2014-11-20 22:30:24 +00:00
|
|
|
|
|
|
|
type = types.attrsOf (types.either types.path types.str);
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
##### implementation
|
|
|
|
|
|
|
|
config = mkIf (builtins.length streams != 0) {
|
|
|
|
|
2018-06-29 23:58:35 +00:00
|
|
|
users.users.liquidsoap = {
|
2014-11-20 22:30:24 +00:00
|
|
|
uid = config.ids.uids.liquidsoap;
|
|
|
|
group = "liquidsoap";
|
|
|
|
extraGroups = [ "audio" ];
|
|
|
|
description = "Liquidsoap streaming user";
|
|
|
|
home = "/var/lib/liquidsoap";
|
|
|
|
createHome = true;
|
|
|
|
};
|
|
|
|
|
2018-06-29 23:58:35 +00:00
|
|
|
users.groups.liquidsoap.gid = config.ids.gids.liquidsoap;
|
2014-11-20 22:30:24 +00:00
|
|
|
|
|
|
|
systemd.services = builtins.listToAttrs ( map streamService streams );
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|