Files
dotfiles/home-modules/mako.nix
Lennart J. Kurzweg (Nx2) 219a19a3a8 fonts (no name2)
2024-12-02 20:46:32 +01:00

17 lines
426 B
Nix
Executable File

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