summaryrefslogtreecommitdiff
path: root/home/wayland/modules/sway/mako.nix
blob: 028ae66b3c250def16c454f3c38bc5a726c84afc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, lib, ... }: let
  font = config.global.font.sans.name
    + " "
    + lib.optionalString (config.global.font.sans.size != null)
      (builtins.toString config.global.font.sans.size);
in {
  services.mako = {
    enable = true;
    defaultTimeout = 3000;

    inherit font;
    borderSize = 2;
    backgroundColor = "#000000";
  };
}