From e11430ed8e8c178ce205a3dd24768ae21c4dc348 Mon Sep 17 00:00:00 2001 From: cy Date: Sat, 14 Dec 2024 00:00:35 -0500 Subject: [PATCH] configure mako with home manager --- nix/home/yt/ytnix.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nix/home/yt/ytnix.nix b/nix/home/yt/ytnix.nix index aba9a8c..a55883d 100644 --- a/nix/home/yt/ytnix.nix +++ b/nix/home/yt/ytnix.nix @@ -123,4 +123,19 @@ programs.waybar.enable = true; programs.feh.enable = true; + + services.mako = { + enable = true; + backgroundColor = "#1a1a1a"; + defaultTimeout = 5000; + borderSize = 0; + borderRadius = 10; + font = "DejaVu Sans Mono 11"; + padding = "10"; + textColor= "#777777"; + extraConfig = '' + background-color=#c00000 + border-color=#ff0000 + ''; + }; }