2023-11-05 17:56:55 +01:00
|
|
|
{ config, pkgs, ... }:
|
2023-11-05 11:40:44 +01:00
|
|
|
{
|
|
|
|
|
services = {
|
|
|
|
|
mako = {
|
|
|
|
|
enable = true;
|
|
|
|
|
font = "JetBrainsMono Nerd Font 11";
|
2023-12-06 19:26:19 +01:00
|
|
|
padding = "15";
|
2023-11-05 11:40:44 +01:00
|
|
|
defaultTimeout = 5000;
|
|
|
|
|
borderSize = 2;
|
2023-12-06 19:26:19 +01:00
|
|
|
borderRadius = 5;
|
|
|
|
|
backgroundColor = "#1e1e2e";
|
|
|
|
|
borderColor = "#89b4fa";
|
2023-11-05 11:40:44 +01:00
|
|
|
progressColor = "over #313244";
|
|
|
|
|
textColor = "#cdd6f4";
|
|
|
|
|
extraConfig = ''
|
|
|
|
|
text-alignment=center
|
|
|
|
|
[urgency=high]
|
2023-12-06 19:26:19 +01:00
|
|
|
border-color=#fab387
|
2023-11-05 11:40:44 +01:00
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|