diff options
Diffstat (limited to 'modules/programs/mako')
-rw-r--r-- | modules/programs/mako/default.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/modules/programs/mako/default.nix b/modules/programs/mako/default.nix new file mode 100644 index 0000000..3987d0d --- /dev/null +++ b/modules/programs/mako/default.nix @@ -0,0 +1,32 @@ +{ config, lib, ... }: + +{ + config = lib.mkIf config.desktop.enable { + + home-manager.users.${config.user} = { + services.mako = { + + enable = true; + + font = "${config.theme.font} 11"; + + margin = toString config.theme.outerGap; + padding = toString config.theme.innerGap; + + backgroundColor = "#${config.theme.colors.base00}"; + progressColor = "#${config.theme.colors.base00}"; + textColor = "#${config.theme.colors.base05}"; + + borderColor = "#${config.theme.accentColor}"; + borderSize = config.theme.borderWidth; + borderRadius = 0; + + defaultTimeout = 5000; + layer = "overlay"; + icons = true; + + }; + }; + + }; +} |