summaryrefslogtreecommitdiff
path: root/nix/modules/home/mako.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-06-28 14:02:43 -0700
committerPreston Pan <ret2pop@gmail.com>2025-06-28 14:02:43 -0700
commit147b01347fabbbe76ee6efb75ae0d3730ae52c0b (patch)
tree050bd4ed0a5dcfe3e8714c0fc980f9ea9e17a651 /nix/modules/home/mako.nix
parent13e815b65599c7092d566b1ec49dd26776f60e6d (diff)
update NixOS configuration and journal twice
Diffstat (limited to 'nix/modules/home/mako.nix')
-rw-r--r--nix/modules/home/mako.nix18
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;
+ };
};
}