nixos/home/hyprland/mako.nix

18 lines
348 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2023-08-02 14:35:34 +01:00
{
services.mako = {
enable = true;
actions = true;
anchor = "top-right";
2023-08-08 13:06:49 +01:00
defaultTimeout = 5000;
2023-08-02 14:35:34 +01:00
icons = true;
iconPath = with config.gtk.iconTheme; "${package}/share/icons/${name}";
2023-08-02 14:35:34 +01:00
layer = "overlay";
margin = "20";
padding = "10";
sort = "-time";
2023-10-19 13:16:36 +01:00
borderRadius = 5;
2023-08-02 14:35:34 +01:00
};
}