1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/animdl/example-config.nix
2025-09-21 09:15:59 -05:00

22 lines
526 B
Nix

{
programs.animdl = {
enable = true;
settings = {
default_provider = "animixplay";
site_urls.animixplay = "https://www.animixplay.to/";
quality_string = "best[subtitle]/best";
default_player = "mpv";
ffmpeg = {
executable = "ffmpeg";
hls_download = false;
submerge = true;
};
};
};
nmt.script = ''
assertFileExists home-files/.config/animdl/config.yml
assertFileContent home-files/.config/animdl/config.yml \
${./config.yml}
'';
}