mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
Streamlink is a CLI utility which pipes video streams from various services into a video player.
28 lines
683 B
Nix
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}
|
|
'';
|
|
}
|