mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
67 lines
1.8 KiB
Nix
67 lines
1.8 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.mediamtx;
|
|
format = pkgs.formats.yaml {};
|
|
in
|
|
{
|
|
meta.maintainers = with lib.maintainers; [ fpletz ];
|
|
|
|
options = {
|
|
services.mediamtx = {
|
|
enable = lib.mkEnableOption "MediaMTX";
|
|
|
|
package = lib.mkPackageOption pkgs "mediamtx" { };
|
|
|
|
settings = lib.mkOption {
|
|
description = ''
|
|
Settings for MediaMTX. Refer to the defaults at
|
|
<https://github.com/bluenviron/mediamtx/blob/main/mediamtx.yml>.
|
|
'';
|
|
type = format.type;
|
|
default = {};
|
|
example = {
|
|
paths = {
|
|
cam = {
|
|
runOnInit = "\${lib.getExe pkgs.ffmpeg} -f v4l2 -i /dev/video0 -f rtsp rtsp://localhost:$RTSP_PORT/$RTSP_PATH";
|
|
runOnInitRestart = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
env = lib.mkOption {
|
|
type = with lib.types; attrsOf anything;
|
|
description = "Extra environment variables for MediaMTX";
|
|
default = {};
|
|
example = {
|
|
MTX_CONFKEY = "mykey";
|
|
};
|
|
};
|
|
|
|
allowVideoAccess = lib.mkEnableOption ''
|
|
access to video devices like cameras on the system
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
# NOTE: mediamtx watches this file and automatically reloads if it changes
|
|
environment.etc."mediamtx.yaml".source = format.generate "mediamtx.yaml" cfg.settings;
|
|
|
|
systemd.services.mediamtx = {
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
environment = cfg.env;
|
|
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
User = "mediamtx";
|
|
Group = "mediamtx";
|
|
SupplementaryGroups = lib.mkIf cfg.allowVideoAccess "video";
|
|
ExecStart = "${cfg.package}/bin/mediamtx /etc/mediamtx.yaml";
|
|
};
|
|
};
|
|
};
|
|
}
|