nix-config/modules/home-manager/notif/mako.nix
smayzy 852d9a2baa
All checks were successful
nix flake show / show-flake (push) Successful in 50s
clean
2025-08-02 15:24:45 +02:00

19 lines
339 B
Nix

{ lib, smayzy, ... }:
let
inherit (lib) mkIf;
in
{
config = mkIf smayzy.mako.enable {
services.mako = {
enable = true;
settings = {
font = "JetBrainsMono 10";
background-color = "#282828";
text-color = "#ebdbb2";
border-color = "#98971a";
border-size = 2;
};
};
};
}