emacs: add mpv to play list
This commit is contained in:
parent
ac90db9744
commit
8a43860333
1 changed files with 6 additions and 0 deletions
|
@ -185,6 +185,12 @@ in {
|
||||||
rule = suffix: ''("${pkgs.sxiv}/bin/sxiv" "\\.${suffix}$")'';
|
rule = suffix: ''("${pkgs.sxiv}/bin/sxiv" "\\.${suffix}$")'';
|
||||||
in lib.concatStringsSep "\n " (builtins.map rule suffixes)
|
in lib.concatStringsSep "\n " (builtins.map rule suffixes)
|
||||||
}
|
}
|
||||||
|
${
|
||||||
|
let
|
||||||
|
suffixes = [ "mp4" "mkv" "avi" ];
|
||||||
|
rule = suffix: ''("${pkgs.mpv}/bin/mpv" "\\.${suffix}$")'';
|
||||||
|
in lib.concatStringsSep "\n " (builtins.map rule suffixes)
|
||||||
|
}
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue