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
383 B
Nix
Raw Normal View History

2022-12-16 08:10:28 +00:00
{ config, pkgs, ... }:
let
colors = config.colorScheme.colors;
in
2022-12-16 08:10:28 +00:00
{
2023-03-14 15:23:24 +00:00
services.mako = {
2022-12-16 08:10:28 +00:00
enable = true;
anchor = "top-right";
defaultTimeout = 5000;
width = 320;
height = 130;
2023-03-14 15:23:24 +00:00
backgroundColor = "#${colors.base00}B3";
borderColor = "#${colors.base01}";
2022-12-16 08:10:28 +00:00
borderRadius = 10;
borderSize = 2;
font = "JetBrainsMono Nerd Font Regular 9";
};
}