This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wayland/mako/default.nix

22 lines
384 B
Nix
Executable File

{ config, pkgs, ... }:
{
services.mako = {
enable = true;
anchor = "top-right";
defaultTimeout = 5000;
width = 440;
height = 320;
backgroundColor = "#282828B3";
borderColor = "#665C54ff";
textColor = "#ebdbb2";
progressColor = "over #665c54";
borderRadius = 10;
borderSize = 2;
font = "JetBrainsMono Nerd Font Regular 10";
};
}