diff options
Diffstat (limited to 'nix/modules/home/mako.nix')
| -rw-r--r-- | nix/modules/home/mako.nix | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/nix/modules/home/mako.nix b/nix/modules/home/mako.nix index d9a4610..14edde8 100644 --- a/nix/modules/home/mako.nix +++ b/nix/modules/home/mako.nix @@ -2,14 +2,14 @@ { 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 -''; + 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; + }; }; } |
