diff options
Diffstat (limited to 'nix/programs/mako/default.nix')
-rw-r--r-- | nix/programs/mako/default.nix | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/nix/programs/mako/default.nix b/nix/programs/mako/default.nix new file mode 100644 index 0000000..2c88bfc --- /dev/null +++ b/nix/programs/mako/default.nix @@ -0,0 +1,28 @@ +{ config, lib, ... }: + +{ + home-manager.users.${config.user} = { + services.mako = { + + enable = true; + + font = "${config.theme.font.monospace} 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.colors.base05}"; + borderSize = config.theme.borderWidth; + borderRadius = config.theme.outerRadius; + + defaultTimeout = 5000; + layer = "overlay"; + icons = true; + + }; + }; +} |