nixos-config/modules/home/mako.nix

26 lines
553 B
Nix
Raw Normal View History

2023-11-05 17:56:55 +01:00
{ config, pkgs, ... }:
2023-11-05 11:40:44 +01:00
{
services = {
mako = {
enable = true;
2023-12-06 19:34:45 +01:00
font = "JetBrainsMono Nerd Font 12";
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";
2023-12-06 19:34:45 +01:00
borderColor = "#b4befe";
2023-11-05 11:40:44 +01:00
progressColor = "over #313244";
textColor = "#cdd6f4";
2023-12-06 19:35:34 +01:00
icons = true;
actions = true;
2023-11-05 11:40:44 +01:00
extraConfig = ''
text-alignment=center
[urgency=high]
2024-05-06 17:38:04 +02:00
default-timeout=100000000
2023-12-06 19:26:19 +01:00
border-color=#fab387
2023-11-05 11:40:44 +01:00
'';
};
};
}