8 lines
173 B
Nix
8 lines
173 B
Nix
{ pkgs, ... }: {
|
|
programs.alacritty.settings = {
|
|
bell.command = {
|
|
command = "${pkgs.libnotify}/bin/notify-send";
|
|
args = "Console Bell rung";
|
|
};
|
|
};
|
|
}
|