11 lines
217 B
Nix
11 lines
217 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [libnotify];
|
|
|
|
services.mako = {
|
|
enable = true;
|
|
settings = {
|
|
defaultTimeout = "5000"; # milliseconds, can be overwritten by notification sender
|
|
};
|
|
};
|
|
}
|