dotfiles/users/alejandro/mako.nix

25 lines
344 B
Nix
Raw Normal View History

2022-09-18 19:42:30 +00:00
{
config,
pkgs,
...
}: {
home.packages = with pkgs; [
mako
libnotify
];
# TODO: Add hack nerd font
programs.mako = {
enable = true;
font = "'Hack Nerd Font' Regular 9";
backgroundColor = "#1D2021F0";
textColor = "#FFFFDF";
borderColor = "#1C1C1C";
borderRadius = 10;
padding = "10";
};
}