summaryrefslogtreecommitdiff
path: root/nix/modules/home/mako.nix
blob: 14edde878dd8f33e0f97e116d57ce311c0578d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, config, sounds, ... }:
{
  services.mako = {
    enable = lib.mkDefault config.monorepo.profiles.graphics.enable;
    settings = {
      on-notify = "exec mpv ${sounds}/polite.ogg --no-config --no-video";
      background-color = "#11111bf8";
      text-color = "#cdd6f4";
      border-color = "#89b4faff";
      border-radius = 1;
      font = "Fira Code 10";
      default-timeout = 3000;
    };
  };
}