nixos_config/home/modules/services/mako.nix

20 lines
342 B
Nix
Raw Normal View History

2026-03-10 21:50:51 +01:00
{ ... }:
2026-03-10 18:54:37 +01:00
{
services.mako = {
enable = true;
settings = {
actions = true;
anchor = "top-center";
border-radius = 0;
default-timeout = 10000;
height = 100;
width = 600;
icons = true;
ignore-timeout = false;
layer = "overlay";
margin = 10;
markup = true;
2026-03-10 21:50:51 +01:00
};
};
}