nixos-config/config/programs/alacritty.nix

9 lines
173 B
Nix
Raw Normal View History

2022-03-05 18:56:57 +00:00
{ pkgs, ... }: {
programs.alacritty.settings = {
bell.command = {
command = "${pkgs.libnotify}/bin/notify-send";
args = "Console Bell rung";
};
};
}