This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/home/mako/mako.nix

39 lines
635 B
Nix
Raw Normal View History

2024-03-29 23:35:59 +01:00
{ config, pkgs, ... }:
{
# mako
services = {
mako = {
enable = true;
# sorting
sort = "-time";
# location
anchor = "top-right";
layer = "top";
padding = "20,20,10";
margin = "10,10,10";
2024-04-02 22:31:53 +02:00
# timeout
defaultTimeout = 6000;
ignoreTimeout = true;
2024-03-29 23:35:59 +01:00
# theme
2024-03-31 19:52:34 +02:00
font = "FiraCode Nerd Font 12";
2024-03-29 23:35:59 +01:00
# size
width = 350;
height = 125;
# colors
2024-04-01 00:58:41 +02:00
backgroundColor = "#131517";
textColor = "#a0a4ab";
borderColor = "#528bff";
2024-03-29 23:35:59 +01:00
borderSize = 2;
borderRadius = 8;
};
};
}
2024-04-02 22:31:53 +02:00