Files
dotfiles/home-modules/mako.nix
Lennart J. Kurzweg (Nx2) 5a1c9eeacb 25.05 xps
2025-05-26 14:44:16 +02:00

19 lines
469 B
Nix

{ pkgs, rice, ... }:
{
home.packages = with pkgs; [ libnotify ];
services.mako = with rice; {
enable = true;
settings = {
defaultTimeout = 10000; # in ms
backgroundColor = color.background;
textColor = color.foreground;
borderColor = color.border;
borderSize = border-width;
font = font.code.name;
borderRadius = rounding;
anchor = "top-right";
margin = builtins.toString (gap-size * 2) ;
};
};
}