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