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

25 lines
513 B
Nix
Executable file

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