16 lines
350 B
Nix
16 lines
350 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
services = {
|
|
mako = {
|
|
enable = true;
|
|
anchor = "bottom-center";
|
|
defaultTimeout = 5000;
|
|
maxVisible = 5;
|
|
backgroundColor = lib.mkForce "#26233a";
|
|
textColor = lib.mkForce "#e0def4";
|
|
borderColor = lib.mkForce "#524f67";
|
|
progressColor = lib.mkForce "over #31748f";
|
|
};
|
|
};
|
|
}
|