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

23 lines
384 B
Nix
Executable File

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