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