nixos/home/hyprland/mako.nix
Evie Litherland-Smith eb98200654 Revert to 10px corner radius
Update waybar style to be a bit more space efficient
2023-10-22 12:58:15 +01:00

18 lines
349 B
Nix

{ config, lib, pkgs, ... }:
{
services.mako = {
enable = true;
actions = true;
anchor = "top-right";
defaultTimeout = 5000;
icons = true;
iconPath = with config.gtk.iconTheme; "${package}/share/icons/${name}";
layer = "overlay";
margin = "20";
padding = "10";
sort = "-time";
borderRadius = 10;
};
}