28 lines
660 B
Nix
28 lines
660 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
home-manager.users.${config.user} = {
|
|
services.mako = {
|
|
|
|
enable = true;
|
|
|
|
font = "${config.theme.font.monospace} 11";
|
|
|
|
margin = toString config.theme.outerGap;
|
|
padding = toString config.theme.innerGap;
|
|
|
|
backgroundColor = "#${config.theme.colors.base00}";
|
|
progressColor = "#${config.theme.colors.base00}";
|
|
textColor = "#${config.theme.colors.base05}";
|
|
|
|
borderColor = "#${config.theme.colors.base05}";
|
|
borderSize = config.theme.borderWidth;
|
|
borderRadius = config.theme.outerRadius;
|
|
|
|
defaultTimeout = 5000;
|
|
layer = "overlay";
|
|
icons = true;
|
|
|
|
};
|
|
};
|
|
}
|