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

34 lines
561 B
Nix

{ config, pkgs, ... }:
{
# mako
services = {
mako = {
enable = true;
# sorting
sort = "-time";
# location
anchor = "top-right";
layer = "top";
padding = "20,20,10";
margin = "10,10,10";
# theme
font = "CommitMono Nerd Font 12";
# size
width = 350;
height = 125;
# colors
backgroundColor = "#05070c";
textColor = "#fab387";
borderColor = "#3d66b9";
borderSize = 2;
borderRadius = 8;
};
};
}