19 lines
458 B
Nix
19 lines
458 B
Nix
{ config, lib, ... }:
|
|
{
|
|
services.mako = {
|
|
enable = true;
|
|
anchor = "top-right";
|
|
width = 600;
|
|
height = 600;
|
|
layer = "top";
|
|
markup = true;
|
|
maxVisible = 10;
|
|
icons = true;
|
|
iconPath = with config.gtk.iconTheme; "${package}/share/icons/${name}";
|
|
borderRadius = 5;
|
|
borderSize = 1;
|
|
borderColor = lib.mkForce config.lib.stylix.scheme.withHashtag.base0E;
|
|
defaultTimeout = (builtins.mul 5 1000); # 5s timeout
|
|
};
|
|
}
|