configure mako

This commit is contained in:
insects 2024-08-10 22:58:32 +02:00
parent 794cf3b7f1
commit 9102c1c7e0
4 changed files with 27 additions and 5 deletions

View file

@ -0,0 +1,13 @@
{ config, lib, ... }: {
services.mako = {
enable = true;
font = lib.mkForce "${config.fontProfiles.regular.family} 12";
padding = "10,20";
anchor = "top-center";
width = 400;
height = 150;
borderSize = 2;
defaultTimeout = 12000;
layer = "overlay";
};
}