28 lines
554 B
Nix
Executable File
28 lines
554 B
Nix
Executable File
{ pkgs, ... }:
|
|
let
|
|
theme = import ../../theme.nix { inherit pkgs; };
|
|
in
|
|
{
|
|
services.mako = {
|
|
enable = true;
|
|
settings = {
|
|
font = theme.fontName;
|
|
icons = false;
|
|
ignore-timeout = true;
|
|
sort = "-time";
|
|
width = 500;
|
|
height = 110;
|
|
layer = "overlay";
|
|
border-radius = 15;
|
|
border-size = 1;
|
|
max-icon-size = 64;
|
|
default-timeout = 5000;
|
|
|
|
background-color = "#24273a";
|
|
text-color = "#cad3f5";
|
|
border-color = "#8aadf4";
|
|
progress-color = "over #363a4f";
|
|
};
|
|
};
|
|
}
|