35 lines
555 B
Nix
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
|
|
'';
|
|
};
|
|
}
|