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

23 lines
381 B
Nix
Executable File

{ config, pkgs, ... }:
let
colors = config.colorScheme.colors;
in
{
programs.mako = {
enable = true;
anchor = "top-right";
defaultTimeout = 5000;
width = 320;
height = 130;
backgroundColor = "#${colors.base00}";
borderColor = "#${colors.base01}";
borderRadius = 10;
borderSize = 2;
font = "JetBrainsMono Nerd Font Regular 9";
};
}