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