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.nix

20 lines
316 B
Nix
Executable File

{ config, pkgs, ... }:
{
programs.mako = {
enable = true;
anchor = "top-right";
defaultTimeout = 5000;
width = 320;
height = 130;
backgroundColor = "#282828";
borderColor = "#3C3836";
borderRadius = 10;
borderSize = 2;
font = "JetBrainsMono Nerd Font Regular 9";
};
}