nixos/home/hyprland/mako.nix

19 lines
386 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2023-08-02 14:35:34 +01:00
{
stylix.targets.mako.enable = true;
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";
borderRadius = 10;
2023-08-02 14:35:34 +01:00
};
}