1
0
Fork 0
forked from fabian/nix_config
nix_config_fabian/home/modules/gui/mako.nix
2025-08-09 14:11:14 -06:00

29 lines
532 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.local.gui;
in {
config = mkIf cfg.enable {
services.mako = {
enable = true;
settings = {
actions = true;
anchor = "top-right";
background-color = "#000000";
border-color = "#000000";
progress-color="over #FFFFFF";
border-radius = 0;
default-timeout = 7000;
font = "JetBrains Mono 10";
icons = true;
ignore-timeout = false;
layer = "top";
};
};
};
}