nix-config/home/features/desktop/wlr/mako.nix
2024-09-22 10:56:59 +02:00

13 lines
293 B
Nix

{ 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 = 1;
defaultTimeout = 12000;
layer = "overlay";
};
}