13 lines
293 B
Nix
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";
|
|
};
|
|
}
|