Files
dotfiles/home-modules/mako.nix
Lennart J. Kurzweg (Nx2) 0340fbfacd mako config fix
2025-07-29 15:50:46 +02:00

19 lines
482 B
Nix

{ pkgs, ... }@all: with all;
{
home.packages = with pkgs; [ libnotify ];
services.mako = with rice; {
enable = 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) ;
};
};
}