Files
dotfiles/home-modules/mako.nix
Lennart J. Kurzweg (Nx2) 9cb5a17bc1 notifiaction TR again
2024-06-29 21:58:18 +02:00

21 lines
476 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 = "top-right";
margin = builtins.toString (gap-size * 2) ;
};
}