Files
dotfiles/home-modules/mako.nix
Lennart J. Kurzweg (Nx2) de8e26e6e3 hyprbar
2025-08-22 14:34:00 +02:00

19 lines
542 B
Nix

{ config, pkgs, ... }@all: with all;
{
home.packages = with pkgs; [ libnotify ];
services.mako = with rice; {
enable = if config.programs.hyprpanel.enable then false else true;
settings = {
default-timeout = 5000; # in ms
background-color = color.background;
text-color = color.foreground;
font = font.code.name;
border-size = border-width;
border-radius = rounding;
border-color = color.border;
anchor = "top-right";
margin = builtins.toString (gap-size * 2) ;
};
};
}