rice/users/buffet/mako.nix

22 lines
451 B
Nix
Raw Normal View History

2024-01-19 14:36:08 +00:00
{pkgs, ...}: {
home-manager.users.buffet = {
services.mako = let
colors = import ./colors.nix;
in {
enable = true;
anchor = "bottom-right";
2024-01-19 14:36:08 +00:00
backgroundColor = colors.primary.background;
borderColor = colors.borders;
progressColor = colors.primary.foreground;
textColor = colors.primary.foreground;
borderSize = 1;
defaultTimeout = 4000;
font = "APL386 Unicode 8";
};
};
}