Files
nixos/apps/mako/default.nix
T
2026-01-01 23:47:05 -06:00

35 lines
555 B
Nix

{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
'';
};
}