# Install VLC and register shell handlers for video/audio formats { pkgs, makeFilesISO, ... }: let installer = pkgs.fetchurl { url = "https://get.videolan.org/vlc/3.0.21/win64/vlc-3.0.21-win64.exe"; hash = "sha256-l0JomlDpbdwE2Azv8EayjaK+79YXvhgWb4xecV7GDFk="; }; in { name = "vlc"; cdroms = [ (makeFilesISO { name = "vlc"; files = [ installer ]; }) ]; auditScript = '' @echo off echo Installing VLC... start /wait D:\vlc-3.0.21-win64.exe /S /L=1033 :: delete shortcut on desktop del /q "C:\Users\Public\Desktop\VLC media player.lnk" ''; }