Files
dotfiles/home-modules/mako.nix
Lennart J. Kurzweg (Nx2) 39e1806e7e north 19
2024-06-19 21:58:59 +02:00

21 lines
479 B
Nix
Executable File

{ pkgs, rice, lib, user, ... }:
lib.mkIf (user != "tv")
{
home.packages = [
pkgs.mako
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 = "bottom-right";
margin = builtins.toString (gap-size * 2) ;
};
}