mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-25 02:22:18 +00:00
13 lines
276 B
Nix
13 lines
276 B
Nix
{ config, ... }: {
|
|
services.mako = {
|
|
enable = true;
|
|
font = "${config.fontProfiles.regular.family} 12";
|
|
padding = "10,20";
|
|
anchor = "top-center";
|
|
width = 400;
|
|
height = 150;
|
|
borderSize = 2;
|
|
defaultTimeout = 12000;
|
|
layer = "overlay";
|
|
};
|
|
}
|