{ lib, pkgs, ... }: { programs.alacritty = { enable = true; settings = { bell = let play = lib.getExe' pkgs.sox "play"; in { "command" = { program = "${play}"; args = [ "${./src/win10notify.mp3}" ]; }; }; }; }; }