nixos/home/hyprland/mako.nix

23 lines
428 B
Nix
Raw Normal View History

2023-08-02 14:35:34 +01:00
{ pkgs, ... }:
{
services.mako = {
enable = true;
actions = true;
anchor = "top-right";
2023-08-08 13:06:49 +01:00
defaultTimeout = 5000;
2023-10-07 10:23:25 +01:00
font = "Fira Sans 10";
2023-08-02 14:35:34 +01:00
icons = true;
layer = "overlay";
margin = "20";
padding = "10";
sort = "-time";
borderRadius = 10;
borderSize = 3;
backgroundColor = "#16161eff";
textColor = "#c0caf5ff";
borderColor = "#c0caf5ff";
progressColor = null;
};
}