mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
14 lines
260 B
Nix
14 lines
260 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.mako = {
|
|
enable = true;
|
|
font = "NotoSansM Nerd Font 10";
|
|
backgroundColor = "#00000099";
|
|
textColor = "#FFFFFF";
|
|
borderRadius = 10;
|
|
defaultTimeout = 10000;
|
|
padding = "15";
|
|
};
|
|
}
|