diff options
author | Silas Schöffel <sils@sils.li> | 2025-06-19 19:38:28 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2025-06-19 19:38:28 +0200 |
commit | d87b286fe55823b2cea752487112c9153d759add (patch) | |
tree | e7edcd8c45c6645dc69dd43e3c1b9b348260a3a5 | |
parent | flake.lock: update (diff) | |
download | nix-config-d87b286fe55823b2cea752487112c9153d759add.zip |
mako: move settings to settings attrs
-rw-r--r-- | hm/mako/default.nix | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/hm/mako/default.nix b/hm/mako/default.nix index 503ca1b..92e1b16 100644 --- a/hm/mako/default.nix +++ b/hm/mako/default.nix @@ -1,20 +1,22 @@ {...}: { services.mako = { enable = true; - #backgroundColor = "#2e3440"; - #borderColor = "#88c0d0"; - borderRadius = 25; - borderSize = 2; - defaultTimeout = 5000; - #font = "Source Code Pro 10"; - width = 500; - height = 500; - icons = true; - ignoreTimeout = true; - layer = "overlay"; - markup = true; # TODO - maxIconSize = 64; - sort = "-time"; + settings = { + #backgroundColor = "#2e3440"; + #borderColor = "#88c0d0"; + borderRadius = 25; + borderSize = 2; + defaultTimeout = 5000; + #font = "Source Code Pro 10"; + width = 500; + height = 500; + icons = true; + ignoreTimeout = true; + layer = "overlay"; + markup = true; # TODO + maxIconSize = 64; + sort = "-time"; + }; #extraConfig = '' # [urgency=low] # border-color=#cccccc |