nix/home-manager/common/desktops/hyprland/themes/stylix/mako-conf.nix
2024-01-04 21:02:10 +09:00

26 lines
505 B
Nix

{ ... }: {
services.mako = {
enable = true;
anchor = "top-left";
borderRadius = 10;
borderSize = 2;
icons = true;
actions = true;
layer = "top";
markup = true;
height = 100;
width = 300;
defaultTimeout = 15000;
sort = "+time";
extraConfig = ''
max-history=5
on-button-left=dismiss
on-button-right=dismiss-all
padding=15
max-icon-size=128
icon-location=left
history=1
text-alignment=left
'';
};
}