Files
nixos/user/modules/mako.nix
T
2025-07-25 10:24:08 +02:00

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