nixos-config/modules/home/mako/default.nix
2023-12-06 19:26:19 +01:00

23 lines
477 B
Nix
Executable file

{ config, pkgs, ... }:
{
services = {
mako = {
enable = true;
font = "JetBrainsMono Nerd Font 11";
padding = "15";
defaultTimeout = 5000;
borderSize = 2;
borderRadius = 5;
backgroundColor = "#1e1e2e";
borderColor = "#89b4fa";
progressColor = "over #313244";
textColor = "#cdd6f4";
extraConfig = ''
text-alignment=center
[urgency=high]
border-color=#fab387
'';
};
};
}