34 lines
561 B
Nix
34 lines
561 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
|
|
# mako
|
|
services = {
|
|
mako = {
|
|
enable = true;
|
|
|
|
# sorting
|
|
sort = "-time";
|
|
|
|
# location
|
|
anchor = "top-right";
|
|
layer = "top";
|
|
padding = "20,20,10";
|
|
margin = "10,10,10";
|
|
|
|
# theme
|
|
font = "CommitMono Nerd Font 12";
|
|
|
|
# size
|
|
width = 350;
|
|
height = 125;
|
|
|
|
# colors
|
|
backgroundColor = "#05070c";
|
|
textColor = "#fab387";
|
|
borderColor = "#3d66b9";
|
|
borderSize = 2;
|
|
borderRadius = 8;
|
|
};
|
|
};
|
|
}
|