Files
dotfiles/home-modules/mako.nix
Lennart J. Kurzweg (Nx2) 104d1334df huge cleanup
2024-11-09 19:48:52 +01:00

17 lines
427 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.name2;
borderRadius = rounding;
anchor = "top-right";
margin = builtins.toString (gap-size * 2) ;
};
}