18 lines
345 B
Nix
18 lines
345 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
services.mako = {
|
||
|
enable = true;
|
||
|
anchor = "top-right";
|
||
|
width = 600;
|
||
|
height = 600;
|
||
|
layer = "top";
|
||
|
markup = true;
|
||
|
maxVisible = 10;
|
||
|
icons = true;
|
||
|
iconPath = with config.gtk.iconTheme; "${package}/share/icons/${name}";
|
||
|
borderRadius = 5;
|
||
|
borderSize = 1;
|
||
|
defaultTimeout = 0;
|
||
|
};
|
||
|
}
|