18 lines
349 B
Nix
18 lines
349 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.mako = {
|
|
enable = true;
|
|
actions = true;
|
|
anchor = "top-right";
|
|
defaultTimeout = 5000;
|
|
icons = true;
|
|
iconPath = with config.gtk.iconTheme; "${package}/share/icons/${name}";
|
|
layer = "overlay";
|
|
margin = "20";
|
|
padding = "10";
|
|
sort = "-time";
|
|
borderRadius = 10;
|
|
};
|
|
}
|