18 lines
319 B
Nix
18 lines
319 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.mako = {
|
||
|
enable = true;
|
||
|
actions = true;
|
||
|
anchor = "top-right";
|
||
|
backgroundColor = "#282828E6";
|
||
|
borderColor = "#458588";
|
||
|
borderRadius = 0;
|
||
|
borderSize = 1;
|
||
|
font = "Inter 10";
|
||
|
icons = true;
|
||
|
textColor = "#ebdbb2";
|
||
|
defaultTimeout = 5000;
|
||
|
};
|
||
|
}
|