1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00
home-manager/tests/modules/programs/streamlink/streamlink-settings.nix
Hoang Nguyen c39110a782
streamlink: init module
Streamlink is a CLI utility which pipes video streams from various
services into a video player.
2025-03-29 00:00:00 +07:00

28 lines
683 B
Nix

{ pkgs, ... }:
{
programs.streamlink = {
enable = true;
settings = {
player = "mpv";
player-args = "--cache 2048";
player-no-close = true;
http-header = [
"User-Agent=Mozilla/5.0 (X11; Linux x86_64; rv:130.0) Gecko/20100101 Firefox/130.0"
"Accept-Language=en-US"
];
};
};
test.stubs.streamlink = { };
nmt.script = let
streamlinkConfig = if pkgs.stdenv.hostPlatform.isDarwin then
"Library/Application Support/streamlink/config"
else
".config/streamlink/config";
in ''
assertFileExists home-files/${streamlinkConfig}
assertFileContent home-files/${streamlinkConfig} ${./config}
'';
}