rice/users/buffet/mako.nix
2024-05-20 12:06:16 +02:00

21 lines
448 B
Nix

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