mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:43:55 -05:00
20 lines
380 B
Nix
20 lines
380 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.mako = {
|
|
enable = true;
|
|
anchor = "top-center";
|
|
backgroundColor = "#232634CC";
|
|
borderColor = "#ca9ee6";
|
|
borderRadius = 10;
|
|
defaultTimeout = 10000;
|
|
font = "NotoSans Nerd Font Regular 10";
|
|
height = 300;
|
|
layer = "top";
|
|
padding = "15";
|
|
textColor = "#FAFAFA";
|
|
width = 400;
|
|
margin = "20,0";
|
|
};
|
|
}
|