add(apps): mako--a notification daemon

This commit is contained in:
kenji
2026-01-01 23:47:05 -06:00
parent 39fb2b4d27
commit b62e4cbafb
4 changed files with 54 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{pkgs, ...}: {
services.mako = {
enable = true;
# Appearance
font = "Sans 11";
width = 350;
height = 150;
margin = "10";
padding = "15";
borderSize = 2;
borderRadius = 8;
# Behavior
defaultTimeout = 5000;
ignoreTimeout = false;
layer = "overlay";
anchor = "top-right";
# Interaction
markup = true;
actions = true;
# Grouping
groupBy = "app-name";
maxVisible = 5;
sort = "-time";
# Load matugen colors
extraConfig = ''
!include matugen
'';
};
}