30 lines
583 B
Nix
30 lines
583 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
services.mako = {
|
|
enable = true;
|
|
settings = {
|
|
actions = true;
|
|
sort = "-time";
|
|
anchor = lib.mkDefault "top-right";
|
|
background-color = "#000000";
|
|
border-color = "#88c0d0";
|
|
border-radius = 0;
|
|
default-timeout = 10000;
|
|
font = "monospace 20";
|
|
height = 150;
|
|
width = 400;
|
|
icons = true;
|
|
ignore-timeout = false;
|
|
layer = "overlay";
|
|
markup = true;
|
|
|
|
# Section example
|
|
"urgency=high" = {
|
|
border-color = "fc0f0f";
|
|
default-timeout = 0;
|
|
|
|
};
|
|
};
|
|
};
|
|
}
|