rice/programs/mako.nix
2024-05-20 12:06:15 +02:00

21 lines
485 B
Nix

{pkgs, ...}: {
home-manager.users.buffet = {
programs.mako = let
theme = import ../theme.nix;
in {
enable = true;
anchor = "top-right";
backgroundColor = theme.primary.background;
borderColor = theme.wm.focused.border;
progressColor = theme.primary.foreground;
textColor = theme.primary.foreground;
borderSize = 1;
defaultTimeout = 4000;
font = with theme; "${font.family} ${toString font.size}";
};
};
}