blob: d9a46101582f50934760e01931fab7a0d70ae5b8 (
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;
backgroundColor = "#11111bf8";
textColor = "#cdd6f4";
borderColor = "#89b4faff";
borderRadius = 1;
font = "Fira Code 10";
defaultTimeout = 3000;
extraConfig = ''
on-notify=exec mpv ${sounds}/polite.ogg --no-config --no-video
'';
};
}
|